Spaces:
Running
Running
# Script to automatically download and cache dataset | |
# Usage: python download.py | |
# | |
# To learn more about the dataset, access: | |
# https://www.cityscapes-dataset.com/ | |
import os | |
import sys | |
# Download and cache dataset | |
def main(): | |
pass | |
if __name__ == "__main__": | |
main() | |