├── .gitignore ├── LICENSE ├── README.md ├── download_data.py ├── downloaded_report.ipynb ├── downloaded_validation_report.tsv.gz ├── requirements.txt ├── training └── .gitkeep └── validation └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorbrigadir/DownloadConceptualCaptions/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorbrigadir/DownloadConceptualCaptions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorbrigadir/DownloadConceptualCaptions/HEAD/README.md -------------------------------------------------------------------------------- /download_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorbrigadir/DownloadConceptualCaptions/HEAD/download_data.py -------------------------------------------------------------------------------- /downloaded_report.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorbrigadir/DownloadConceptualCaptions/HEAD/downloaded_report.ipynb -------------------------------------------------------------------------------- /downloaded_validation_report.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorbrigadir/DownloadConceptualCaptions/HEAD/downloaded_validation_report.tsv.gz -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pandas 2 | numpy 3 | requests 4 | tqdm 5 | python-magic 6 | -------------------------------------------------------------------------------- /training/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /validation/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------