lenet_mnist / data /download.py
rzimmerdev's picture
Added boilerplate project structure
ae1ea8a
raw
history blame
277 Bytes
# 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()