dataset.py 516 B

1234567891011121314
  1. # Copyright (c) 2021 NVIDIA Corporation. All rights reserved.
  2. import gdown
  3. import os
  4. ## VOC dataset
  5. # uncomment the file
  6. url = 'http://host.robots.ox.ac.uk/pascal/VOC/voc2012/VOCtrainval_11-May-2012.tar'
  7. # if the url above fails, uncomment the url below and rebiuld your container
  8. #url = 'https://drive.google.com/file/d/1YkakD_qJuKmwAZF_HwLGLNb8fcqZbtx7/view?usp=sharing'
  9. output_python = '/workspace/tlt-experiments/data/VOCtrainval_11-May-2012.tar'
  10. gdown.download(url, output_python, quiet=False, proxy=None)