├── LICENSE ├── README.md ├── datasets ├── indices.npz ├── mc30.csv ├── men3000.csv ├── mturk287.csv ├── mturk771.csv ├── rg65.csv ├── rw2034.csv ├── simlex999.csv ├── verb143.csv ├── wordsim353.csv ├── wordsim_rel.csv └── wordsim_sim.csv ├── enwik_experiments.ipynb ├── functions.py ├── img ├── .DS_Store ├── algorithm.png ├── corr_results.png ├── neighbors_results.png └── ro.png ├── main_.pl └── word2vec_as_MF.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGrinch/ro_sgns/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGrinch/ro_sgns/HEAD/README.md -------------------------------------------------------------------------------- /datasets/indices.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGrinch/ro_sgns/HEAD/datasets/indices.npz -------------------------------------------------------------------------------- /datasets/mc30.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGrinch/ro_sgns/HEAD/datasets/mc30.csv -------------------------------------------------------------------------------- /datasets/men3000.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGrinch/ro_sgns/HEAD/datasets/men3000.csv -------------------------------------------------------------------------------- /datasets/mturk287.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGrinch/ro_sgns/HEAD/datasets/mturk287.csv -------------------------------------------------------------------------------- /datasets/mturk771.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGrinch/ro_sgns/HEAD/datasets/mturk771.csv -------------------------------------------------------------------------------- /datasets/rg65.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGrinch/ro_sgns/HEAD/datasets/rg65.csv -------------------------------------------------------------------------------- /datasets/rw2034.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGrinch/ro_sgns/HEAD/datasets/rw2034.csv -------------------------------------------------------------------------------- /datasets/simlex999.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGrinch/ro_sgns/HEAD/datasets/simlex999.csv -------------------------------------------------------------------------------- /datasets/verb143.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGrinch/ro_sgns/HEAD/datasets/verb143.csv -------------------------------------------------------------------------------- /datasets/wordsim353.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGrinch/ro_sgns/HEAD/datasets/wordsim353.csv -------------------------------------------------------------------------------- /datasets/wordsim_rel.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGrinch/ro_sgns/HEAD/datasets/wordsim_rel.csv -------------------------------------------------------------------------------- /datasets/wordsim_sim.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGrinch/ro_sgns/HEAD/datasets/wordsim_sim.csv -------------------------------------------------------------------------------- /enwik_experiments.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGrinch/ro_sgns/HEAD/enwik_experiments.ipynb -------------------------------------------------------------------------------- /functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGrinch/ro_sgns/HEAD/functions.py -------------------------------------------------------------------------------- /img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGrinch/ro_sgns/HEAD/img/.DS_Store -------------------------------------------------------------------------------- /img/algorithm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGrinch/ro_sgns/HEAD/img/algorithm.png -------------------------------------------------------------------------------- /img/corr_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGrinch/ro_sgns/HEAD/img/corr_results.png -------------------------------------------------------------------------------- /img/neighbors_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGrinch/ro_sgns/HEAD/img/neighbors_results.png -------------------------------------------------------------------------------- /img/ro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGrinch/ro_sgns/HEAD/img/ro.png -------------------------------------------------------------------------------- /main_.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGrinch/ro_sgns/HEAD/main_.pl -------------------------------------------------------------------------------- /word2vec_as_MF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGrinch/ro_sgns/HEAD/word2vec_as_MF.py --------------------------------------------------------------------------------