├── .github └── workflows │ └── tests.yml ├── .gitignore ├── CITATION.cff ├── LICENSE ├── Makefile ├── README.md ├── baseline_tfidf.py ├── cfp.txt ├── evaluate.py ├── images ├── example-girl-eating-apple.jpg ├── example-hard-treesurviveforestfire.png ├── example-ice-melting.png ├── example-list-cloudsfogmadeof.png └── example-simpler-insect6legs.png ├── requirements.txt ├── test_evaluate.py ├── tg2021task-evalperiod.sha256 └── tg2021task-practice.sha256 /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognitiveailab/tg2021task/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognitiveailab/tg2021task/HEAD/.gitignore -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognitiveailab/tg2021task/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognitiveailab/tg2021task/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognitiveailab/tg2021task/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognitiveailab/tg2021task/HEAD/README.md -------------------------------------------------------------------------------- /baseline_tfidf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognitiveailab/tg2021task/HEAD/baseline_tfidf.py -------------------------------------------------------------------------------- /cfp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognitiveailab/tg2021task/HEAD/cfp.txt -------------------------------------------------------------------------------- /evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognitiveailab/tg2021task/HEAD/evaluate.py -------------------------------------------------------------------------------- /images/example-girl-eating-apple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognitiveailab/tg2021task/HEAD/images/example-girl-eating-apple.jpg -------------------------------------------------------------------------------- /images/example-hard-treesurviveforestfire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognitiveailab/tg2021task/HEAD/images/example-hard-treesurviveforestfire.png -------------------------------------------------------------------------------- /images/example-ice-melting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognitiveailab/tg2021task/HEAD/images/example-ice-melting.png -------------------------------------------------------------------------------- /images/example-list-cloudsfogmadeof.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognitiveailab/tg2021task/HEAD/images/example-list-cloudsfogmadeof.png -------------------------------------------------------------------------------- /images/example-simpler-insect6legs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognitiveailab/tg2021task/HEAD/images/example-simpler-insect6legs.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognitiveailab/tg2021task/HEAD/requirements.txt -------------------------------------------------------------------------------- /test_evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognitiveailab/tg2021task/HEAD/test_evaluate.py -------------------------------------------------------------------------------- /tg2021task-evalperiod.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognitiveailab/tg2021task/HEAD/tg2021task-evalperiod.sha256 -------------------------------------------------------------------------------- /tg2021task-practice.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognitiveailab/tg2021task/HEAD/tg2021task-practice.sha256 --------------------------------------------------------------------------------