├── AttrGNN ├── gnn_model.py ├── load_data.py ├── train_subgraph.py └── utils.py ├── License ├── README.md ├── configs.json ├── data └── ER-Magellan │ ├── Dirty │ ├── DBLP-ACM │ │ ├── tableA.csv │ │ ├── tableB.csv │ │ ├── test.csv │ │ ├── train.csv │ │ └── valid.csv │ └── iTunes-Amazon │ │ ├── tableA.csv │ │ ├── tableB.csv │ │ ├── test.csv │ │ ├── train.csv │ │ └── valid.csv │ ├── Structured │ ├── Amazon-Google │ │ ├── tableA.csv │ │ ├── tableB.csv │ │ ├── test.csv │ │ ├── train.csv │ │ └── valid.csv │ ├── BeerAdvo-RateBeer │ │ ├── tableA.csv │ │ ├── tableB.csv │ │ ├── test.csv │ │ ├── train.csv │ │ └── valid.csv │ ├── DBLP-ACM │ │ ├── tableA.csv │ │ ├── tableB.csv │ │ ├── test.csv │ │ ├── train.csv │ │ └── valid.csv │ ├── Fodors-Zagats │ │ ├── tableA.csv │ │ ├── tableB.csv │ │ ├── test.csv │ │ ├── train.csv │ │ └── valid.csv │ └── iTunes-Amazon │ │ ├── tableA.csv │ │ ├── tableB.csv │ │ ├── test.csv │ │ ├── train.csv │ │ └── valid.csv │ └── Textual │ └── Abt-Buy │ ├── tableA.csv │ ├── tableB.csv │ ├── test.csv │ ├── train.csv │ └── valid.csv ├── dataloader.py ├── framework.jpg ├── log ├── DirtyDBLP-ACM_literal_structure_fine-tune__2021-04-28 17_32_15 ├── DirtyDBLP-ACM_seeds__2021-04-28 17_31_32 ├── DirtyiTunes-Amazon_literal_digital_structure_fine-tune__2021-04-28 17_43_58 ├── DirtyiTunes-Amazon_seeds__2021-04-28 17_39_06 ├── StructuredAmazon-Google_seeds__2021-04-28 16_28_07 ├── StructuredAmazon-Google_structure_name_fine-tune__2021-04-28 16_28_38 ├── StructuredBeerAdvo-RateBeer_literal_digital_structure_name_fine-tune__2021-04-28 16_34_29 ├── StructuredBeerAdvo-RateBeer_seeds__2021-04-28 16_33_47 ├── StructuredDBLP-ACM_literal_structure_name_fine-tune__2021-04-28 17_10_48 ├── StructuredDBLP-ACM_seeds__2021-04-28 17_10_04 ├── StructuredFodors-Zagats_literal_digital_structure_fine-tune__2021-04-28 17_15_02 ├── StructuredFodors-Zagats_seeds__2021-04-28 17_14_37 ├── StructurediTunes-Amazon_literal_digital_structure_name_fine-tune__2021-04-28 17_24_53 ├── StructurediTunes-Amazon_seeds__2021-04-28 17_20_12 ├── TextualAbt-Buy_seeds__2021-04-28 17_47_14 └── TextualAbt-Buy_structure_fine-tune__2021-04-28 17_47_45 ├── model.py ├── run_all.py ├── seeds.py ├── table2kg_attr.py ├── train.py ├── utils.py └── wo_train.py /AttrGNN/gnn_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/AttrGNN/gnn_model.py -------------------------------------------------------------------------------- /AttrGNN/load_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/AttrGNN/load_data.py -------------------------------------------------------------------------------- /AttrGNN/train_subgraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/AttrGNN/train_subgraph.py -------------------------------------------------------------------------------- /AttrGNN/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/AttrGNN/utils.py -------------------------------------------------------------------------------- /License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/License -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/README.md -------------------------------------------------------------------------------- /configs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/configs.json -------------------------------------------------------------------------------- /data/ER-Magellan/Dirty/DBLP-ACM/tableA.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/data/ER-Magellan/Dirty/DBLP-ACM/tableA.csv -------------------------------------------------------------------------------- /data/ER-Magellan/Dirty/DBLP-ACM/tableB.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/data/ER-Magellan/Dirty/DBLP-ACM/tableB.csv -------------------------------------------------------------------------------- /data/ER-Magellan/Dirty/DBLP-ACM/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/data/ER-Magellan/Dirty/DBLP-ACM/test.csv -------------------------------------------------------------------------------- /data/ER-Magellan/Dirty/DBLP-ACM/train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/data/ER-Magellan/Dirty/DBLP-ACM/train.csv -------------------------------------------------------------------------------- /data/ER-Magellan/Dirty/DBLP-ACM/valid.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/data/ER-Magellan/Dirty/DBLP-ACM/valid.csv -------------------------------------------------------------------------------- /data/ER-Magellan/Dirty/iTunes-Amazon/tableA.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/data/ER-Magellan/Dirty/iTunes-Amazon/tableA.csv -------------------------------------------------------------------------------- /data/ER-Magellan/Dirty/iTunes-Amazon/tableB.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/data/ER-Magellan/Dirty/iTunes-Amazon/tableB.csv -------------------------------------------------------------------------------- /data/ER-Magellan/Dirty/iTunes-Amazon/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/data/ER-Magellan/Dirty/iTunes-Amazon/test.csv -------------------------------------------------------------------------------- /data/ER-Magellan/Dirty/iTunes-Amazon/train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/data/ER-Magellan/Dirty/iTunes-Amazon/train.csv -------------------------------------------------------------------------------- /data/ER-Magellan/Dirty/iTunes-Amazon/valid.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/data/ER-Magellan/Dirty/iTunes-Amazon/valid.csv -------------------------------------------------------------------------------- /data/ER-Magellan/Structured/Amazon-Google/tableA.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/data/ER-Magellan/Structured/Amazon-Google/tableA.csv -------------------------------------------------------------------------------- /data/ER-Magellan/Structured/Amazon-Google/tableB.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/data/ER-Magellan/Structured/Amazon-Google/tableB.csv -------------------------------------------------------------------------------- /data/ER-Magellan/Structured/Amazon-Google/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/data/ER-Magellan/Structured/Amazon-Google/test.csv -------------------------------------------------------------------------------- /data/ER-Magellan/Structured/Amazon-Google/train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/data/ER-Magellan/Structured/Amazon-Google/train.csv -------------------------------------------------------------------------------- /data/ER-Magellan/Structured/Amazon-Google/valid.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/data/ER-Magellan/Structured/Amazon-Google/valid.csv -------------------------------------------------------------------------------- /data/ER-Magellan/Structured/BeerAdvo-RateBeer/tableA.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/data/ER-Magellan/Structured/BeerAdvo-RateBeer/tableA.csv -------------------------------------------------------------------------------- /data/ER-Magellan/Structured/BeerAdvo-RateBeer/tableB.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/data/ER-Magellan/Structured/BeerAdvo-RateBeer/tableB.csv -------------------------------------------------------------------------------- /data/ER-Magellan/Structured/BeerAdvo-RateBeer/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/data/ER-Magellan/Structured/BeerAdvo-RateBeer/test.csv -------------------------------------------------------------------------------- /data/ER-Magellan/Structured/BeerAdvo-RateBeer/train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/data/ER-Magellan/Structured/BeerAdvo-RateBeer/train.csv -------------------------------------------------------------------------------- /data/ER-Magellan/Structured/BeerAdvo-RateBeer/valid.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/data/ER-Magellan/Structured/BeerAdvo-RateBeer/valid.csv -------------------------------------------------------------------------------- /data/ER-Magellan/Structured/DBLP-ACM/tableA.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/data/ER-Magellan/Structured/DBLP-ACM/tableA.csv -------------------------------------------------------------------------------- /data/ER-Magellan/Structured/DBLP-ACM/tableB.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/data/ER-Magellan/Structured/DBLP-ACM/tableB.csv -------------------------------------------------------------------------------- /data/ER-Magellan/Structured/DBLP-ACM/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/data/ER-Magellan/Structured/DBLP-ACM/test.csv -------------------------------------------------------------------------------- /data/ER-Magellan/Structured/DBLP-ACM/train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/data/ER-Magellan/Structured/DBLP-ACM/train.csv -------------------------------------------------------------------------------- /data/ER-Magellan/Structured/DBLP-ACM/valid.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/data/ER-Magellan/Structured/DBLP-ACM/valid.csv -------------------------------------------------------------------------------- /data/ER-Magellan/Structured/Fodors-Zagats/tableA.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/data/ER-Magellan/Structured/Fodors-Zagats/tableA.csv -------------------------------------------------------------------------------- /data/ER-Magellan/Structured/Fodors-Zagats/tableB.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/data/ER-Magellan/Structured/Fodors-Zagats/tableB.csv -------------------------------------------------------------------------------- /data/ER-Magellan/Structured/Fodors-Zagats/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/data/ER-Magellan/Structured/Fodors-Zagats/test.csv -------------------------------------------------------------------------------- /data/ER-Magellan/Structured/Fodors-Zagats/train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/data/ER-Magellan/Structured/Fodors-Zagats/train.csv -------------------------------------------------------------------------------- /data/ER-Magellan/Structured/Fodors-Zagats/valid.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/data/ER-Magellan/Structured/Fodors-Zagats/valid.csv -------------------------------------------------------------------------------- /data/ER-Magellan/Structured/iTunes-Amazon/tableA.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/data/ER-Magellan/Structured/iTunes-Amazon/tableA.csv -------------------------------------------------------------------------------- /data/ER-Magellan/Structured/iTunes-Amazon/tableB.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/data/ER-Magellan/Structured/iTunes-Amazon/tableB.csv -------------------------------------------------------------------------------- /data/ER-Magellan/Structured/iTunes-Amazon/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/data/ER-Magellan/Structured/iTunes-Amazon/test.csv -------------------------------------------------------------------------------- /data/ER-Magellan/Structured/iTunes-Amazon/train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/data/ER-Magellan/Structured/iTunes-Amazon/train.csv -------------------------------------------------------------------------------- /data/ER-Magellan/Structured/iTunes-Amazon/valid.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/data/ER-Magellan/Structured/iTunes-Amazon/valid.csv -------------------------------------------------------------------------------- /data/ER-Magellan/Textual/Abt-Buy/tableA.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/data/ER-Magellan/Textual/Abt-Buy/tableA.csv -------------------------------------------------------------------------------- /data/ER-Magellan/Textual/Abt-Buy/tableB.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/data/ER-Magellan/Textual/Abt-Buy/tableB.csv -------------------------------------------------------------------------------- /data/ER-Magellan/Textual/Abt-Buy/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/data/ER-Magellan/Textual/Abt-Buy/test.csv -------------------------------------------------------------------------------- /data/ER-Magellan/Textual/Abt-Buy/train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/data/ER-Magellan/Textual/Abt-Buy/train.csv -------------------------------------------------------------------------------- /data/ER-Magellan/Textual/Abt-Buy/valid.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/data/ER-Magellan/Textual/Abt-Buy/valid.csv -------------------------------------------------------------------------------- /dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/dataloader.py -------------------------------------------------------------------------------- /framework.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/framework.jpg -------------------------------------------------------------------------------- /log/DirtyDBLP-ACM_literal_structure_fine-tune__2021-04-28 17_32_15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/log/DirtyDBLP-ACM_literal_structure_fine-tune__2021-04-28 17_32_15 -------------------------------------------------------------------------------- /log/DirtyDBLP-ACM_seeds__2021-04-28 17_31_32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/log/DirtyDBLP-ACM_seeds__2021-04-28 17_31_32 -------------------------------------------------------------------------------- /log/DirtyiTunes-Amazon_literal_digital_structure_fine-tune__2021-04-28 17_43_58: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/log/DirtyiTunes-Amazon_literal_digital_structure_fine-tune__2021-04-28 17_43_58 -------------------------------------------------------------------------------- /log/DirtyiTunes-Amazon_seeds__2021-04-28 17_39_06: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/log/DirtyiTunes-Amazon_seeds__2021-04-28 17_39_06 -------------------------------------------------------------------------------- /log/StructuredAmazon-Google_seeds__2021-04-28 16_28_07: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/log/StructuredAmazon-Google_seeds__2021-04-28 16_28_07 -------------------------------------------------------------------------------- /log/StructuredAmazon-Google_structure_name_fine-tune__2021-04-28 16_28_38: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/log/StructuredAmazon-Google_structure_name_fine-tune__2021-04-28 16_28_38 -------------------------------------------------------------------------------- /log/StructuredBeerAdvo-RateBeer_literal_digital_structure_name_fine-tune__2021-04-28 16_34_29: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/log/StructuredBeerAdvo-RateBeer_literal_digital_structure_name_fine-tune__2021-04-28 16_34_29 -------------------------------------------------------------------------------- /log/StructuredBeerAdvo-RateBeer_seeds__2021-04-28 16_33_47: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/log/StructuredBeerAdvo-RateBeer_seeds__2021-04-28 16_33_47 -------------------------------------------------------------------------------- /log/StructuredDBLP-ACM_literal_structure_name_fine-tune__2021-04-28 17_10_48: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/log/StructuredDBLP-ACM_literal_structure_name_fine-tune__2021-04-28 17_10_48 -------------------------------------------------------------------------------- /log/StructuredDBLP-ACM_seeds__2021-04-28 17_10_04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/log/StructuredDBLP-ACM_seeds__2021-04-28 17_10_04 -------------------------------------------------------------------------------- /log/StructuredFodors-Zagats_literal_digital_structure_fine-tune__2021-04-28 17_15_02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/log/StructuredFodors-Zagats_literal_digital_structure_fine-tune__2021-04-28 17_15_02 -------------------------------------------------------------------------------- /log/StructuredFodors-Zagats_seeds__2021-04-28 17_14_37: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/log/StructuredFodors-Zagats_seeds__2021-04-28 17_14_37 -------------------------------------------------------------------------------- /log/StructurediTunes-Amazon_literal_digital_structure_name_fine-tune__2021-04-28 17_24_53: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/log/StructurediTunes-Amazon_literal_digital_structure_name_fine-tune__2021-04-28 17_24_53 -------------------------------------------------------------------------------- /log/StructurediTunes-Amazon_seeds__2021-04-28 17_20_12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/log/StructurediTunes-Amazon_seeds__2021-04-28 17_20_12 -------------------------------------------------------------------------------- /log/TextualAbt-Buy_seeds__2021-04-28 17_47_14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/log/TextualAbt-Buy_seeds__2021-04-28 17_47_14 -------------------------------------------------------------------------------- /log/TextualAbt-Buy_structure_fine-tune__2021-04-28 17_47_45: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/log/TextualAbt-Buy_structure_fine-tune__2021-04-28 17_47_45 -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/model.py -------------------------------------------------------------------------------- /run_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/run_all.py -------------------------------------------------------------------------------- /seeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/seeds.py -------------------------------------------------------------------------------- /table2kg_attr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/table2kg_attr.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/utils.py -------------------------------------------------------------------------------- /wo_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DAILY/CollaborEM/HEAD/wo_train.py --------------------------------------------------------------------------------