├── .gitignore ├── README.md ├── bin ├── DBP15k │ ├── fr_en │ │ ├── AMIE │ │ │ ├── all2id_en.txt │ │ │ ├── all2id_fr.txt │ │ │ ├── rule_for_triples_en.txt │ │ │ ├── rule_for_triples_fr.txt │ │ │ ├── triples_en.txt │ │ │ └── triples_fr.txt │ │ ├── attr2id_en.txt │ │ ├── attr2id_fr.txt │ │ ├── entity2att_en.txt │ │ ├── entity2att_fr.txt │ │ ├── entity2id_en.txt │ │ ├── entity2id_fr.txt │ │ ├── entity_seeds.txt │ │ ├── relation2id_en.txt │ │ ├── relation2id_fr.txt │ │ ├── relation_seeds.txt │ │ ├── triples_en.txt │ │ └── triples_fr.txt │ ├── ja_en │ │ ├── AMIE │ │ │ ├── all2id_en.txt │ │ │ ├── all2id_ja.txt │ │ │ ├── rule_for_triples_en.txt │ │ │ ├── rule_for_triples_ja.txt │ │ │ ├── triples_en.txt │ │ │ └── triples_ja.txt │ │ ├── attr2id_en.txt │ │ ├── attr2id_ja.txt │ │ ├── entity2att_en.txt │ │ ├── entity2att_ja.txt │ │ ├── entity2id_en.txt │ │ ├── entity2id_ja.txt │ │ ├── entity_seeds.txt │ │ ├── relation2id_en.txt │ │ ├── relation2id_ja.txt │ │ ├── relation_seeds.txt │ │ ├── triples_en.txt │ │ └── triples_ja.txt │ └── zh_en │ │ ├── AMIE │ │ ├── all2id_en.txt │ │ ├── all2id_zh.txt │ │ ├── rule_for_triples_en.txt │ │ ├── rule_for_triples_zh.txt │ │ ├── triples_en.txt │ │ └── triples_zh.txt │ │ ├── attr2id_en.txt │ │ ├── attr2id_zh.txt │ │ ├── entity2att_en.txt │ │ ├── entity2att_zh.txt │ │ ├── entity2id_en.txt │ │ ├── entity2id_zh.txt │ │ ├── entity_seeds.txt │ │ ├── relation2id_en.txt │ │ ├── relation2id_zh.txt │ │ ├── relation_seeds.txt │ │ ├── triples_en.txt │ │ └── triples_zh.txt └── DWY100k │ ├── dbp_wd │ ├── AMIE │ │ ├── all2id_dbp.txt │ │ ├── all2id_wd.txt │ │ ├── rule_for_triples_dbp.txt │ │ ├── rule_for_triples_wd.txt │ │ ├── triples_dbp.txt │ │ └── triples_wd.txt │ ├── entity2id_dbp.txt │ ├── entity2id_wd.txt │ ├── relation2id_dbp.txt │ ├── relation2id_wd.txt │ ├── relation_seeds.txt │ ├── test_entity_seeds.txt │ ├── train_entity_seeds.txt │ ├── triples_dbp.txt │ └── triples_wd.txt │ └── dbp_yg │ ├── AMIE │ ├── all2id_dbp.txt │ ├── all2id_yg.txt │ ├── rule_for_triples_dbp.txt │ ├── rule_for_triples_yg.txt │ ├── triples_dbp.txt │ └── triples_yg.txt │ ├── entity2id_dbp.txt │ ├── entity2id_yg.txt │ ├── relation2id_dbp.txt │ ├── relation2id_yg.txt │ ├── relation_seeds.txt │ ├── test_entity_seeds.txt │ ├── train_entity_seeds.txt │ ├── triples_dbp.txt │ └── triples_yg.txt ├── config.py ├── example_train.py ├── executable └── amie_plus.jar ├── format_data.py ├── graph_completion ├── adjacency_matrix.py ├── cross_graph_completion.py ├── nets.py ├── rule_mining.py └── triple_graph.py ├── log └── .tmp ├── models ├── layers.py ├── models.py └── torch_functions.py ├── project_path.py └── utils ├── Datasets.py ├── functions.py ├── reader.py └── tools.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/README.md -------------------------------------------------------------------------------- /bin/DBP15k/fr_en/AMIE/all2id_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/fr_en/AMIE/all2id_en.txt -------------------------------------------------------------------------------- /bin/DBP15k/fr_en/AMIE/all2id_fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/fr_en/AMIE/all2id_fr.txt -------------------------------------------------------------------------------- /bin/DBP15k/fr_en/AMIE/rule_for_triples_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/fr_en/AMIE/rule_for_triples_en.txt -------------------------------------------------------------------------------- /bin/DBP15k/fr_en/AMIE/rule_for_triples_fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/fr_en/AMIE/rule_for_triples_fr.txt -------------------------------------------------------------------------------- /bin/DBP15k/fr_en/AMIE/triples_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/fr_en/AMIE/triples_en.txt -------------------------------------------------------------------------------- /bin/DBP15k/fr_en/AMIE/triples_fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/fr_en/AMIE/triples_fr.txt -------------------------------------------------------------------------------- /bin/DBP15k/fr_en/attr2id_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/fr_en/attr2id_en.txt -------------------------------------------------------------------------------- /bin/DBP15k/fr_en/attr2id_fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/fr_en/attr2id_fr.txt -------------------------------------------------------------------------------- /bin/DBP15k/fr_en/entity2att_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/fr_en/entity2att_en.txt -------------------------------------------------------------------------------- /bin/DBP15k/fr_en/entity2att_fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/fr_en/entity2att_fr.txt -------------------------------------------------------------------------------- /bin/DBP15k/fr_en/entity2id_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/fr_en/entity2id_en.txt -------------------------------------------------------------------------------- /bin/DBP15k/fr_en/entity2id_fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/fr_en/entity2id_fr.txt -------------------------------------------------------------------------------- /bin/DBP15k/fr_en/entity_seeds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/fr_en/entity_seeds.txt -------------------------------------------------------------------------------- /bin/DBP15k/fr_en/relation2id_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/fr_en/relation2id_en.txt -------------------------------------------------------------------------------- /bin/DBP15k/fr_en/relation2id_fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/fr_en/relation2id_fr.txt -------------------------------------------------------------------------------- /bin/DBP15k/fr_en/relation_seeds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/fr_en/relation_seeds.txt -------------------------------------------------------------------------------- /bin/DBP15k/fr_en/triples_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/fr_en/triples_en.txt -------------------------------------------------------------------------------- /bin/DBP15k/fr_en/triples_fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/fr_en/triples_fr.txt -------------------------------------------------------------------------------- /bin/DBP15k/ja_en/AMIE/all2id_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/ja_en/AMIE/all2id_en.txt -------------------------------------------------------------------------------- /bin/DBP15k/ja_en/AMIE/all2id_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/ja_en/AMIE/all2id_ja.txt -------------------------------------------------------------------------------- /bin/DBP15k/ja_en/AMIE/rule_for_triples_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/ja_en/AMIE/rule_for_triples_en.txt -------------------------------------------------------------------------------- /bin/DBP15k/ja_en/AMIE/rule_for_triples_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/ja_en/AMIE/rule_for_triples_ja.txt -------------------------------------------------------------------------------- /bin/DBP15k/ja_en/AMIE/triples_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/ja_en/AMIE/triples_en.txt -------------------------------------------------------------------------------- /bin/DBP15k/ja_en/AMIE/triples_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/ja_en/AMIE/triples_ja.txt -------------------------------------------------------------------------------- /bin/DBP15k/ja_en/attr2id_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/ja_en/attr2id_en.txt -------------------------------------------------------------------------------- /bin/DBP15k/ja_en/attr2id_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/ja_en/attr2id_ja.txt -------------------------------------------------------------------------------- /bin/DBP15k/ja_en/entity2att_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/ja_en/entity2att_en.txt -------------------------------------------------------------------------------- /bin/DBP15k/ja_en/entity2att_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/ja_en/entity2att_ja.txt -------------------------------------------------------------------------------- /bin/DBP15k/ja_en/entity2id_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/ja_en/entity2id_en.txt -------------------------------------------------------------------------------- /bin/DBP15k/ja_en/entity2id_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/ja_en/entity2id_ja.txt -------------------------------------------------------------------------------- /bin/DBP15k/ja_en/entity_seeds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/ja_en/entity_seeds.txt -------------------------------------------------------------------------------- /bin/DBP15k/ja_en/relation2id_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/ja_en/relation2id_en.txt -------------------------------------------------------------------------------- /bin/DBP15k/ja_en/relation2id_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/ja_en/relation2id_ja.txt -------------------------------------------------------------------------------- /bin/DBP15k/ja_en/relation_seeds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/ja_en/relation_seeds.txt -------------------------------------------------------------------------------- /bin/DBP15k/ja_en/triples_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/ja_en/triples_en.txt -------------------------------------------------------------------------------- /bin/DBP15k/ja_en/triples_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/ja_en/triples_ja.txt -------------------------------------------------------------------------------- /bin/DBP15k/zh_en/AMIE/all2id_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/zh_en/AMIE/all2id_en.txt -------------------------------------------------------------------------------- /bin/DBP15k/zh_en/AMIE/all2id_zh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/zh_en/AMIE/all2id_zh.txt -------------------------------------------------------------------------------- /bin/DBP15k/zh_en/AMIE/rule_for_triples_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/zh_en/AMIE/rule_for_triples_en.txt -------------------------------------------------------------------------------- /bin/DBP15k/zh_en/AMIE/rule_for_triples_zh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/zh_en/AMIE/rule_for_triples_zh.txt -------------------------------------------------------------------------------- /bin/DBP15k/zh_en/AMIE/triples_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/zh_en/AMIE/triples_en.txt -------------------------------------------------------------------------------- /bin/DBP15k/zh_en/AMIE/triples_zh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/zh_en/AMIE/triples_zh.txt -------------------------------------------------------------------------------- /bin/DBP15k/zh_en/attr2id_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/zh_en/attr2id_en.txt -------------------------------------------------------------------------------- /bin/DBP15k/zh_en/attr2id_zh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/zh_en/attr2id_zh.txt -------------------------------------------------------------------------------- /bin/DBP15k/zh_en/entity2att_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/zh_en/entity2att_en.txt -------------------------------------------------------------------------------- /bin/DBP15k/zh_en/entity2att_zh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/zh_en/entity2att_zh.txt -------------------------------------------------------------------------------- /bin/DBP15k/zh_en/entity2id_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/zh_en/entity2id_en.txt -------------------------------------------------------------------------------- /bin/DBP15k/zh_en/entity2id_zh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/zh_en/entity2id_zh.txt -------------------------------------------------------------------------------- /bin/DBP15k/zh_en/entity_seeds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/zh_en/entity_seeds.txt -------------------------------------------------------------------------------- /bin/DBP15k/zh_en/relation2id_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/zh_en/relation2id_en.txt -------------------------------------------------------------------------------- /bin/DBP15k/zh_en/relation2id_zh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/zh_en/relation2id_zh.txt -------------------------------------------------------------------------------- /bin/DBP15k/zh_en/relation_seeds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/zh_en/relation_seeds.txt -------------------------------------------------------------------------------- /bin/DBP15k/zh_en/triples_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/zh_en/triples_en.txt -------------------------------------------------------------------------------- /bin/DBP15k/zh_en/triples_zh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DBP15k/zh_en/triples_zh.txt -------------------------------------------------------------------------------- /bin/DWY100k/dbp_wd/AMIE/all2id_dbp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DWY100k/dbp_wd/AMIE/all2id_dbp.txt -------------------------------------------------------------------------------- /bin/DWY100k/dbp_wd/AMIE/all2id_wd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DWY100k/dbp_wd/AMIE/all2id_wd.txt -------------------------------------------------------------------------------- /bin/DWY100k/dbp_wd/AMIE/rule_for_triples_dbp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DWY100k/dbp_wd/AMIE/rule_for_triples_dbp.txt -------------------------------------------------------------------------------- /bin/DWY100k/dbp_wd/AMIE/rule_for_triples_wd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DWY100k/dbp_wd/AMIE/rule_for_triples_wd.txt -------------------------------------------------------------------------------- /bin/DWY100k/dbp_wd/AMIE/triples_dbp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DWY100k/dbp_wd/AMIE/triples_dbp.txt -------------------------------------------------------------------------------- /bin/DWY100k/dbp_wd/AMIE/triples_wd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DWY100k/dbp_wd/AMIE/triples_wd.txt -------------------------------------------------------------------------------- /bin/DWY100k/dbp_wd/entity2id_dbp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DWY100k/dbp_wd/entity2id_dbp.txt -------------------------------------------------------------------------------- /bin/DWY100k/dbp_wd/entity2id_wd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DWY100k/dbp_wd/entity2id_wd.txt -------------------------------------------------------------------------------- /bin/DWY100k/dbp_wd/relation2id_dbp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DWY100k/dbp_wd/relation2id_dbp.txt -------------------------------------------------------------------------------- /bin/DWY100k/dbp_wd/relation2id_wd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DWY100k/dbp_wd/relation2id_wd.txt -------------------------------------------------------------------------------- /bin/DWY100k/dbp_wd/relation_seeds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DWY100k/dbp_wd/relation_seeds.txt -------------------------------------------------------------------------------- /bin/DWY100k/dbp_wd/test_entity_seeds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DWY100k/dbp_wd/test_entity_seeds.txt -------------------------------------------------------------------------------- /bin/DWY100k/dbp_wd/train_entity_seeds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DWY100k/dbp_wd/train_entity_seeds.txt -------------------------------------------------------------------------------- /bin/DWY100k/dbp_wd/triples_dbp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DWY100k/dbp_wd/triples_dbp.txt -------------------------------------------------------------------------------- /bin/DWY100k/dbp_wd/triples_wd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DWY100k/dbp_wd/triples_wd.txt -------------------------------------------------------------------------------- /bin/DWY100k/dbp_yg/AMIE/all2id_dbp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DWY100k/dbp_yg/AMIE/all2id_dbp.txt -------------------------------------------------------------------------------- /bin/DWY100k/dbp_yg/AMIE/all2id_yg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DWY100k/dbp_yg/AMIE/all2id_yg.txt -------------------------------------------------------------------------------- /bin/DWY100k/dbp_yg/AMIE/rule_for_triples_dbp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DWY100k/dbp_yg/AMIE/rule_for_triples_dbp.txt -------------------------------------------------------------------------------- /bin/DWY100k/dbp_yg/AMIE/rule_for_triples_yg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DWY100k/dbp_yg/AMIE/rule_for_triples_yg.txt -------------------------------------------------------------------------------- /bin/DWY100k/dbp_yg/AMIE/triples_dbp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DWY100k/dbp_yg/AMIE/triples_dbp.txt -------------------------------------------------------------------------------- /bin/DWY100k/dbp_yg/AMIE/triples_yg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DWY100k/dbp_yg/AMIE/triples_yg.txt -------------------------------------------------------------------------------- /bin/DWY100k/dbp_yg/entity2id_dbp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DWY100k/dbp_yg/entity2id_dbp.txt -------------------------------------------------------------------------------- /bin/DWY100k/dbp_yg/entity2id_yg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DWY100k/dbp_yg/entity2id_yg.txt -------------------------------------------------------------------------------- /bin/DWY100k/dbp_yg/relation2id_dbp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DWY100k/dbp_yg/relation2id_dbp.txt -------------------------------------------------------------------------------- /bin/DWY100k/dbp_yg/relation2id_yg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DWY100k/dbp_yg/relation2id_yg.txt -------------------------------------------------------------------------------- /bin/DWY100k/dbp_yg/relation_seeds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DWY100k/dbp_yg/relation_seeds.txt -------------------------------------------------------------------------------- /bin/DWY100k/dbp_yg/test_entity_seeds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DWY100k/dbp_yg/test_entity_seeds.txt -------------------------------------------------------------------------------- /bin/DWY100k/dbp_yg/train_entity_seeds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DWY100k/dbp_yg/train_entity_seeds.txt -------------------------------------------------------------------------------- /bin/DWY100k/dbp_yg/triples_dbp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DWY100k/dbp_yg/triples_dbp.txt -------------------------------------------------------------------------------- /bin/DWY100k/dbp_yg/triples_yg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/bin/DWY100k/dbp_yg/triples_yg.txt -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/config.py -------------------------------------------------------------------------------- /example_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/example_train.py -------------------------------------------------------------------------------- /executable/amie_plus.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/executable/amie_plus.jar -------------------------------------------------------------------------------- /format_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/format_data.py -------------------------------------------------------------------------------- /graph_completion/adjacency_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/graph_completion/adjacency_matrix.py -------------------------------------------------------------------------------- /graph_completion/cross_graph_completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/graph_completion/cross_graph_completion.py -------------------------------------------------------------------------------- /graph_completion/nets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/graph_completion/nets.py -------------------------------------------------------------------------------- /graph_completion/rule_mining.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/graph_completion/rule_mining.py -------------------------------------------------------------------------------- /graph_completion/triple_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/graph_completion/triple_graph.py -------------------------------------------------------------------------------- /log/.tmp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/models/layers.py -------------------------------------------------------------------------------- /models/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/models/models.py -------------------------------------------------------------------------------- /models/torch_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/models/torch_functions.py -------------------------------------------------------------------------------- /project_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/project_path.py -------------------------------------------------------------------------------- /utils/Datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/utils/Datasets.py -------------------------------------------------------------------------------- /utils/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/utils/functions.py -------------------------------------------------------------------------------- /utils/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/utils/reader.py -------------------------------------------------------------------------------- /utils/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/MuGNN/HEAD/utils/tools.py --------------------------------------------------------------------------------