├── .gitignore ├── LICENSE ├── README.md ├── data └── aksw-bib │ ├── aksw-bib-test_output.txt │ ├── aksw-bib.test.nt │ ├── aksw-bib.train+valid.nt │ ├── aksw-bib.w2v │ ├── aksw-bib_dictionary.txt │ ├── aksw-bib_output.txt │ ├── aksw-bib_output.txt.w2v │ └── aksw-bib_sentences.txt ├── kg2vec ├── analogy_predict.py ├── kg2vec_analogy.sh ├── kg2vec_lstm.sh ├── lstm_neural_net.py ├── make_dictionary.py └── train_model.py ├── notebooks └── explore_results.ipynb ├── requirements.txt └── run_logs ├── analogy_run1.log └── lstm_run1.log /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKSW/KG2Vec/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKSW/KG2Vec/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKSW/KG2Vec/HEAD/README.md -------------------------------------------------------------------------------- /data/aksw-bib/aksw-bib-test_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKSW/KG2Vec/HEAD/data/aksw-bib/aksw-bib-test_output.txt -------------------------------------------------------------------------------- /data/aksw-bib/aksw-bib.test.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKSW/KG2Vec/HEAD/data/aksw-bib/aksw-bib.test.nt -------------------------------------------------------------------------------- /data/aksw-bib/aksw-bib.train+valid.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKSW/KG2Vec/HEAD/data/aksw-bib/aksw-bib.train+valid.nt -------------------------------------------------------------------------------- /data/aksw-bib/aksw-bib.w2v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKSW/KG2Vec/HEAD/data/aksw-bib/aksw-bib.w2v -------------------------------------------------------------------------------- /data/aksw-bib/aksw-bib_dictionary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKSW/KG2Vec/HEAD/data/aksw-bib/aksw-bib_dictionary.txt -------------------------------------------------------------------------------- /data/aksw-bib/aksw-bib_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKSW/KG2Vec/HEAD/data/aksw-bib/aksw-bib_output.txt -------------------------------------------------------------------------------- /data/aksw-bib/aksw-bib_output.txt.w2v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKSW/KG2Vec/HEAD/data/aksw-bib/aksw-bib_output.txt.w2v -------------------------------------------------------------------------------- /data/aksw-bib/aksw-bib_sentences.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKSW/KG2Vec/HEAD/data/aksw-bib/aksw-bib_sentences.txt -------------------------------------------------------------------------------- /kg2vec/analogy_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKSW/KG2Vec/HEAD/kg2vec/analogy_predict.py -------------------------------------------------------------------------------- /kg2vec/kg2vec_analogy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKSW/KG2Vec/HEAD/kg2vec/kg2vec_analogy.sh -------------------------------------------------------------------------------- /kg2vec/kg2vec_lstm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKSW/KG2Vec/HEAD/kg2vec/kg2vec_lstm.sh -------------------------------------------------------------------------------- /kg2vec/lstm_neural_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKSW/KG2Vec/HEAD/kg2vec/lstm_neural_net.py -------------------------------------------------------------------------------- /kg2vec/make_dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKSW/KG2Vec/HEAD/kg2vec/make_dictionary.py -------------------------------------------------------------------------------- /kg2vec/train_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKSW/KG2Vec/HEAD/kg2vec/train_model.py -------------------------------------------------------------------------------- /notebooks/explore_results.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKSW/KG2Vec/HEAD/notebooks/explore_results.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKSW/KG2Vec/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_logs/analogy_run1.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKSW/KG2Vec/HEAD/run_logs/analogy_run1.log -------------------------------------------------------------------------------- /run_logs/lstm_run1.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKSW/KG2Vec/HEAD/run_logs/lstm_run1.log --------------------------------------------------------------------------------