├── .gitignore ├── 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 └── worldtree_corpus.sha256 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umanlp/tg2019task/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umanlp/tg2019task/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umanlp/tg2019task/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umanlp/tg2019task/HEAD/README.md -------------------------------------------------------------------------------- /baseline_tfidf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umanlp/tg2019task/HEAD/baseline_tfidf.py -------------------------------------------------------------------------------- /cfp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umanlp/tg2019task/HEAD/cfp.txt -------------------------------------------------------------------------------- /evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umanlp/tg2019task/HEAD/evaluate.py -------------------------------------------------------------------------------- /images/example-girl-eating-apple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umanlp/tg2019task/HEAD/images/example-girl-eating-apple.jpg -------------------------------------------------------------------------------- /images/example-hard-treesurviveforestfire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umanlp/tg2019task/HEAD/images/example-hard-treesurviveforestfire.png -------------------------------------------------------------------------------- /images/example-ice-melting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umanlp/tg2019task/HEAD/images/example-ice-melting.png -------------------------------------------------------------------------------- /images/example-list-cloudsfogmadeof.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umanlp/tg2019task/HEAD/images/example-list-cloudsfogmadeof.png -------------------------------------------------------------------------------- /images/example-simpler-insect6legs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umanlp/tg2019task/HEAD/images/example-simpler-insect6legs.png -------------------------------------------------------------------------------- /worldtree_corpus.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umanlp/tg2019task/HEAD/worldtree_corpus.sha256 --------------------------------------------------------------------------------