├── .DS_Store ├── .gitignore ├── LICENSE ├── Readme.md ├── batch_generator.cpp ├── config └── log_config.json ├── helper.py ├── images ├── semgcn_model.png └── syngcn_model.png ├── makefile ├── models.py ├── requirements.txt ├── semantic_info ├── antonyms.txt ├── hypernyms.txt ├── hyponyms.txt └── synonyms.txt ├── semgcn.py ├── switch_evaluation_data.py └── syngcn.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/WordGCN/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/WordGCN/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/WordGCN/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/WordGCN/HEAD/Readme.md -------------------------------------------------------------------------------- /batch_generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/WordGCN/HEAD/batch_generator.cpp -------------------------------------------------------------------------------- /config/log_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/WordGCN/HEAD/config/log_config.json -------------------------------------------------------------------------------- /helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/WordGCN/HEAD/helper.py -------------------------------------------------------------------------------- /images/semgcn_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/WordGCN/HEAD/images/semgcn_model.png -------------------------------------------------------------------------------- /images/syngcn_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/WordGCN/HEAD/images/syngcn_model.png -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/WordGCN/HEAD/makefile -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/WordGCN/HEAD/models.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/WordGCN/HEAD/requirements.txt -------------------------------------------------------------------------------- /semantic_info/antonyms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/WordGCN/HEAD/semantic_info/antonyms.txt -------------------------------------------------------------------------------- /semantic_info/hypernyms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/WordGCN/HEAD/semantic_info/hypernyms.txt -------------------------------------------------------------------------------- /semantic_info/hyponyms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/WordGCN/HEAD/semantic_info/hyponyms.txt -------------------------------------------------------------------------------- /semantic_info/synonyms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/WordGCN/HEAD/semantic_info/synonyms.txt -------------------------------------------------------------------------------- /semgcn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/WordGCN/HEAD/semgcn.py -------------------------------------------------------------------------------- /switch_evaluation_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/WordGCN/HEAD/switch_evaluation_data.py -------------------------------------------------------------------------------- /syngcn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/WordGCN/HEAD/syngcn.py --------------------------------------------------------------------------------