Spaces:
Sleeping
Sleeping
File size: 277 Bytes
ae1ea8a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
# 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()
|