Browse Source

adding TAO to experimentals directory

Tosin Akinwale Adesuyi 2 years ago
parent
commit
281c4d7a15

+ 5 - 0
experimental/TAO_Transfer_Learning/English/data/README.txt

@@ -0,0 +1,5 @@
+The Pascal VOC challenge is a very popular dataset however, the website frequently goes down. 
+In case you are unable to download the VOCtrainval_11-May-2012.tar within the Dockerfile or Singularity file,
+please uncomment:
+`#url = 'https://drive.google.com/file/d/1YkakD_qJuKmwAZF_HwLGLNb8fcqZbtx7/view?usp=sharing'`  
+in /source_code/dataset.py code.

+ 0 - 1
experimental/TAO_Transfer_Learning/English/data/ignore.txt

@@ -1 +0,0 @@
-download dataset

+ 5 - 1
experimental/TAO_Transfer_Learning/English/source_code/dataset.py

@@ -3,7 +3,11 @@
 import gdown
 import os
 
-## alk.traj.dcd input file 
+## VOC dataset
+# uncomment the file
 url = 'http://host.robots.ox.ac.uk/pascal/VOC/voc2012/VOCtrainval_11-May-2012.tar'
+
+# if the url above fails, uncomment the url below and rebiuld your container
+#url = 'https://drive.google.com/file/d/1YkakD_qJuKmwAZF_HwLGLNb8fcqZbtx7/view?usp=sharing'
 output_python = '/workspace/tlt-experiments/data/VOCtrainval_11-May-2012.tar'
 gdown.download(url, output_python, quiet=False, proxy=None)