├── README.md ├── code ├── adversarial.py ├── dictionary.py ├── evaluator.py ├── export.py ├── models.py └── trainer_batch.py ├── evaluation ├── simlex_evaluator.py ├── simlexorig999.txt └── simverb3500.txt ├── helper ├── extract_from_large_vectors.py └── get_nearest_neighbours.py └── vocab └── simlexsimverb.words /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cambridgeltl/adversarial-postspec/HEAD/README.md -------------------------------------------------------------------------------- /code/adversarial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cambridgeltl/adversarial-postspec/HEAD/code/adversarial.py -------------------------------------------------------------------------------- /code/dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cambridgeltl/adversarial-postspec/HEAD/code/dictionary.py -------------------------------------------------------------------------------- /code/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cambridgeltl/adversarial-postspec/HEAD/code/evaluator.py -------------------------------------------------------------------------------- /code/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cambridgeltl/adversarial-postspec/HEAD/code/export.py -------------------------------------------------------------------------------- /code/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cambridgeltl/adversarial-postspec/HEAD/code/models.py -------------------------------------------------------------------------------- /code/trainer_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cambridgeltl/adversarial-postspec/HEAD/code/trainer_batch.py -------------------------------------------------------------------------------- /evaluation/simlex_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cambridgeltl/adversarial-postspec/HEAD/evaluation/simlex_evaluator.py -------------------------------------------------------------------------------- /evaluation/simlexorig999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cambridgeltl/adversarial-postspec/HEAD/evaluation/simlexorig999.txt -------------------------------------------------------------------------------- /evaluation/simverb3500.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cambridgeltl/adversarial-postspec/HEAD/evaluation/simverb3500.txt -------------------------------------------------------------------------------- /helper/extract_from_large_vectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cambridgeltl/adversarial-postspec/HEAD/helper/extract_from_large_vectors.py -------------------------------------------------------------------------------- /helper/get_nearest_neighbours.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cambridgeltl/adversarial-postspec/HEAD/helper/get_nearest_neighbours.py -------------------------------------------------------------------------------- /vocab/simlexsimverb.words: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cambridgeltl/adversarial-postspec/HEAD/vocab/simlexsimverb.words --------------------------------------------------------------------------------