├── LICENSE ├── README.md ├── config.py ├── data ├── ICEWS05-15 │ ├── ent_ids_1 │ ├── ent_ids_2 │ ├── ref_pairs │ ├── rel_ids_1 │ ├── rel_ids_2 │ ├── sup_pairs │ ├── time_id │ ├── triples_1 │ ├── triples_2 │ └── unsup_link ├── YAGO-WIKI20K │ ├── ent_ids_1 │ ├── ent_ids_2 │ ├── not_sensitive_link │ ├── not_sensitive_link1 │ ├── not_sensitive_link2 │ ├── ref_pairs │ ├── rel_ids_1 │ ├── rel_ids_2 │ ├── sup_pairs │ ├── time_id │ ├── time_sensitive_link │ ├── time_sensitive_link1 │ ├── time_sensitive_link2 │ ├── triples_1 │ ├── triples_2 │ └── unsup_link ├── YAGO-WIKI50K │ ├── ent_ids_1 │ ├── ent_ids_2 │ ├── ref_pairs │ ├── rel_ids_1 │ ├── rel_ids_2 │ ├── sup_pairs │ ├── time_id │ ├── triples_1 │ ├── triples_2 │ └── unsup_link └── testdata │ ├── ent_ids_1 │ ├── ent_ids_2 │ ├── entity_time_1 │ ├── entity_time_2 │ ├── ref_pairs │ ├── rel_ids_1 │ ├── rel_ids_2 │ ├── sup_pairs │ ├── time_id │ ├── triples_1 │ └── triples_2 ├── dto.py ├── evaluate.py ├── main.py ├── models.py ├── processing.py ├── run_exps.sh ├── seu_tkg.py ├── utils.py ├── utils2.py ├── utils_large.py └── wl_test.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/config.py -------------------------------------------------------------------------------- /data/ICEWS05-15/ent_ids_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/data/ICEWS05-15/ent_ids_1 -------------------------------------------------------------------------------- /data/ICEWS05-15/ent_ids_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/data/ICEWS05-15/ent_ids_2 -------------------------------------------------------------------------------- /data/ICEWS05-15/ref_pairs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/data/ICEWS05-15/ref_pairs -------------------------------------------------------------------------------- /data/ICEWS05-15/rel_ids_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/data/ICEWS05-15/rel_ids_1 -------------------------------------------------------------------------------- /data/ICEWS05-15/rel_ids_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/data/ICEWS05-15/rel_ids_2 -------------------------------------------------------------------------------- /data/ICEWS05-15/sup_pairs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/data/ICEWS05-15/sup_pairs -------------------------------------------------------------------------------- /data/ICEWS05-15/time_id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/data/ICEWS05-15/time_id -------------------------------------------------------------------------------- /data/ICEWS05-15/triples_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/data/ICEWS05-15/triples_1 -------------------------------------------------------------------------------- /data/ICEWS05-15/triples_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/data/ICEWS05-15/triples_2 -------------------------------------------------------------------------------- /data/ICEWS05-15/unsup_link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/data/ICEWS05-15/unsup_link -------------------------------------------------------------------------------- /data/YAGO-WIKI20K/ent_ids_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/data/YAGO-WIKI20K/ent_ids_1 -------------------------------------------------------------------------------- /data/YAGO-WIKI20K/ent_ids_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/data/YAGO-WIKI20K/ent_ids_2 -------------------------------------------------------------------------------- /data/YAGO-WIKI20K/not_sensitive_link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/data/YAGO-WIKI20K/not_sensitive_link -------------------------------------------------------------------------------- /data/YAGO-WIKI20K/not_sensitive_link1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/data/YAGO-WIKI20K/not_sensitive_link1 -------------------------------------------------------------------------------- /data/YAGO-WIKI20K/not_sensitive_link2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/data/YAGO-WIKI20K/not_sensitive_link2 -------------------------------------------------------------------------------- /data/YAGO-WIKI20K/ref_pairs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/data/YAGO-WIKI20K/ref_pairs -------------------------------------------------------------------------------- /data/YAGO-WIKI20K/rel_ids_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/data/YAGO-WIKI20K/rel_ids_1 -------------------------------------------------------------------------------- /data/YAGO-WIKI20K/rel_ids_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/data/YAGO-WIKI20K/rel_ids_2 -------------------------------------------------------------------------------- /data/YAGO-WIKI20K/sup_pairs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/data/YAGO-WIKI20K/sup_pairs -------------------------------------------------------------------------------- /data/YAGO-WIKI20K/time_id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/data/YAGO-WIKI20K/time_id -------------------------------------------------------------------------------- /data/YAGO-WIKI20K/time_sensitive_link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/data/YAGO-WIKI20K/time_sensitive_link -------------------------------------------------------------------------------- /data/YAGO-WIKI20K/time_sensitive_link1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/data/YAGO-WIKI20K/time_sensitive_link1 -------------------------------------------------------------------------------- /data/YAGO-WIKI20K/time_sensitive_link2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/data/YAGO-WIKI20K/time_sensitive_link2 -------------------------------------------------------------------------------- /data/YAGO-WIKI20K/triples_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/data/YAGO-WIKI20K/triples_1 -------------------------------------------------------------------------------- /data/YAGO-WIKI20K/triples_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/data/YAGO-WIKI20K/triples_2 -------------------------------------------------------------------------------- /data/YAGO-WIKI20K/unsup_link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/data/YAGO-WIKI20K/unsup_link -------------------------------------------------------------------------------- /data/YAGO-WIKI50K/ent_ids_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/data/YAGO-WIKI50K/ent_ids_1 -------------------------------------------------------------------------------- /data/YAGO-WIKI50K/ent_ids_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/data/YAGO-WIKI50K/ent_ids_2 -------------------------------------------------------------------------------- /data/YAGO-WIKI50K/ref_pairs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/data/YAGO-WIKI50K/ref_pairs -------------------------------------------------------------------------------- /data/YAGO-WIKI50K/rel_ids_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/data/YAGO-WIKI50K/rel_ids_1 -------------------------------------------------------------------------------- /data/YAGO-WIKI50K/rel_ids_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/data/YAGO-WIKI50K/rel_ids_2 -------------------------------------------------------------------------------- /data/YAGO-WIKI50K/sup_pairs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/data/YAGO-WIKI50K/sup_pairs -------------------------------------------------------------------------------- /data/YAGO-WIKI50K/time_id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/data/YAGO-WIKI50K/time_id -------------------------------------------------------------------------------- /data/YAGO-WIKI50K/triples_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/data/YAGO-WIKI50K/triples_1 -------------------------------------------------------------------------------- /data/YAGO-WIKI50K/triples_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/data/YAGO-WIKI50K/triples_2 -------------------------------------------------------------------------------- /data/YAGO-WIKI50K/unsup_link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/data/YAGO-WIKI50K/unsup_link -------------------------------------------------------------------------------- /data/testdata/ent_ids_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/data/testdata/ent_ids_1 -------------------------------------------------------------------------------- /data/testdata/ent_ids_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/data/testdata/ent_ids_2 -------------------------------------------------------------------------------- /data/testdata/entity_time_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/data/testdata/entity_time_1 -------------------------------------------------------------------------------- /data/testdata/entity_time_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/data/testdata/entity_time_2 -------------------------------------------------------------------------------- /data/testdata/ref_pairs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/data/testdata/ref_pairs -------------------------------------------------------------------------------- /data/testdata/rel_ids_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/data/testdata/rel_ids_1 -------------------------------------------------------------------------------- /data/testdata/rel_ids_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/data/testdata/rel_ids_2 -------------------------------------------------------------------------------- /data/testdata/sup_pairs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/data/testdata/sup_pairs -------------------------------------------------------------------------------- /data/testdata/time_id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/data/testdata/time_id -------------------------------------------------------------------------------- /data/testdata/triples_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/data/testdata/triples_1 -------------------------------------------------------------------------------- /data/testdata/triples_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/data/testdata/triples_2 -------------------------------------------------------------------------------- /dto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/dto.py -------------------------------------------------------------------------------- /evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/evaluate.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/main.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/models.py -------------------------------------------------------------------------------- /processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/processing.py -------------------------------------------------------------------------------- /run_exps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/run_exps.sh -------------------------------------------------------------------------------- /seu_tkg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/seu_tkg.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/utils.py -------------------------------------------------------------------------------- /utils2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/utils2.py -------------------------------------------------------------------------------- /utils_large.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/utils_large.py -------------------------------------------------------------------------------- /wl_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/DualMatch/HEAD/wl_test.py --------------------------------------------------------------------------------