├── Linkage ├── README.md ├── ab2fb.txt ├── ab2yago.txt ├── lfb2fb.txt ├── lfb2yago.txt ├── ml2fb.txt └── ml2yago.txt ├── Projects └── UPGAN │ ├── Readme.md │ └── code │ ├── Model │ ├── DistMult.py │ ├── UGAT.py │ ├── UGAT_mlp.py │ ├── base_model.py │ ├── concat_1layer.py │ ├── concat_2layer.py │ ├── dot_2layer.py │ ├── generator.py │ ├── generator_concat.py │ └── layers.py │ ├── README.md │ ├── Readme.md │ ├── main_pretrain.py │ ├── main_upgan.py │ ├── model.Jpeg │ ├── pretrain │ ├── base_trainer.py │ ├── init.py │ └── trainer.py │ ├── run_book.sh │ ├── train │ ├── base_trainer.py │ ├── evaluation.py │ ├── init.py │ ├── load_data.py │ └── trainer.py │ └── util │ ├── Regularization.py │ ├── dataset.py │ ├── kernel.py │ ├── sage_kernel.py │ ├── triple_kernel.py │ └── utils.py ├── README.md ├── dump.jpg ├── expansion ├── 2step │ ├── README.md │ ├── filter_ent.py │ ├── run_2step.sh │ └── scan_triple_2step.py ├── README.md ├── run_1step.sh └── scan_triple.py └── table_new.png /Linkage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCDM/KB4Rec/HEAD/Linkage/README.md -------------------------------------------------------------------------------- /Linkage/ab2fb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCDM/KB4Rec/HEAD/Linkage/ab2fb.txt -------------------------------------------------------------------------------- /Linkage/ab2yago.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCDM/KB4Rec/HEAD/Linkage/ab2yago.txt -------------------------------------------------------------------------------- /Linkage/lfb2fb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCDM/KB4Rec/HEAD/Linkage/lfb2fb.txt -------------------------------------------------------------------------------- /Linkage/lfb2yago.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCDM/KB4Rec/HEAD/Linkage/lfb2yago.txt -------------------------------------------------------------------------------- /Linkage/ml2fb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCDM/KB4Rec/HEAD/Linkage/ml2fb.txt -------------------------------------------------------------------------------- /Linkage/ml2yago.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCDM/KB4Rec/HEAD/Linkage/ml2yago.txt -------------------------------------------------------------------------------- /Projects/UPGAN/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCDM/KB4Rec/HEAD/Projects/UPGAN/Readme.md -------------------------------------------------------------------------------- /Projects/UPGAN/code/Model/DistMult.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCDM/KB4Rec/HEAD/Projects/UPGAN/code/Model/DistMult.py -------------------------------------------------------------------------------- /Projects/UPGAN/code/Model/UGAT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCDM/KB4Rec/HEAD/Projects/UPGAN/code/Model/UGAT.py -------------------------------------------------------------------------------- /Projects/UPGAN/code/Model/UGAT_mlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCDM/KB4Rec/HEAD/Projects/UPGAN/code/Model/UGAT_mlp.py -------------------------------------------------------------------------------- /Projects/UPGAN/code/Model/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCDM/KB4Rec/HEAD/Projects/UPGAN/code/Model/base_model.py -------------------------------------------------------------------------------- /Projects/UPGAN/code/Model/concat_1layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCDM/KB4Rec/HEAD/Projects/UPGAN/code/Model/concat_1layer.py -------------------------------------------------------------------------------- /Projects/UPGAN/code/Model/concat_2layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCDM/KB4Rec/HEAD/Projects/UPGAN/code/Model/concat_2layer.py -------------------------------------------------------------------------------- /Projects/UPGAN/code/Model/dot_2layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCDM/KB4Rec/HEAD/Projects/UPGAN/code/Model/dot_2layer.py -------------------------------------------------------------------------------- /Projects/UPGAN/code/Model/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCDM/KB4Rec/HEAD/Projects/UPGAN/code/Model/generator.py -------------------------------------------------------------------------------- /Projects/UPGAN/code/Model/generator_concat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCDM/KB4Rec/HEAD/Projects/UPGAN/code/Model/generator_concat.py -------------------------------------------------------------------------------- /Projects/UPGAN/code/Model/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCDM/KB4Rec/HEAD/Projects/UPGAN/code/Model/layers.py -------------------------------------------------------------------------------- /Projects/UPGAN/code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCDM/KB4Rec/HEAD/Projects/UPGAN/code/README.md -------------------------------------------------------------------------------- /Projects/UPGAN/code/Readme.md: -------------------------------------------------------------------------------- 1 | ss 2 | -------------------------------------------------------------------------------- /Projects/UPGAN/code/main_pretrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCDM/KB4Rec/HEAD/Projects/UPGAN/code/main_pretrain.py -------------------------------------------------------------------------------- /Projects/UPGAN/code/main_upgan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCDM/KB4Rec/HEAD/Projects/UPGAN/code/main_upgan.py -------------------------------------------------------------------------------- /Projects/UPGAN/code/model.Jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCDM/KB4Rec/HEAD/Projects/UPGAN/code/model.Jpeg -------------------------------------------------------------------------------- /Projects/UPGAN/code/pretrain/base_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCDM/KB4Rec/HEAD/Projects/UPGAN/code/pretrain/base_trainer.py -------------------------------------------------------------------------------- /Projects/UPGAN/code/pretrain/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCDM/KB4Rec/HEAD/Projects/UPGAN/code/pretrain/init.py -------------------------------------------------------------------------------- /Projects/UPGAN/code/pretrain/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCDM/KB4Rec/HEAD/Projects/UPGAN/code/pretrain/trainer.py -------------------------------------------------------------------------------- /Projects/UPGAN/code/run_book.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCDM/KB4Rec/HEAD/Projects/UPGAN/code/run_book.sh -------------------------------------------------------------------------------- /Projects/UPGAN/code/train/base_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCDM/KB4Rec/HEAD/Projects/UPGAN/code/train/base_trainer.py -------------------------------------------------------------------------------- /Projects/UPGAN/code/train/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCDM/KB4Rec/HEAD/Projects/UPGAN/code/train/evaluation.py -------------------------------------------------------------------------------- /Projects/UPGAN/code/train/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCDM/KB4Rec/HEAD/Projects/UPGAN/code/train/init.py -------------------------------------------------------------------------------- /Projects/UPGAN/code/train/load_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCDM/KB4Rec/HEAD/Projects/UPGAN/code/train/load_data.py -------------------------------------------------------------------------------- /Projects/UPGAN/code/train/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCDM/KB4Rec/HEAD/Projects/UPGAN/code/train/trainer.py -------------------------------------------------------------------------------- /Projects/UPGAN/code/util/Regularization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCDM/KB4Rec/HEAD/Projects/UPGAN/code/util/Regularization.py -------------------------------------------------------------------------------- /Projects/UPGAN/code/util/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCDM/KB4Rec/HEAD/Projects/UPGAN/code/util/dataset.py -------------------------------------------------------------------------------- /Projects/UPGAN/code/util/kernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCDM/KB4Rec/HEAD/Projects/UPGAN/code/util/kernel.py -------------------------------------------------------------------------------- /Projects/UPGAN/code/util/sage_kernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCDM/KB4Rec/HEAD/Projects/UPGAN/code/util/sage_kernel.py -------------------------------------------------------------------------------- /Projects/UPGAN/code/util/triple_kernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCDM/KB4Rec/HEAD/Projects/UPGAN/code/util/triple_kernel.py -------------------------------------------------------------------------------- /Projects/UPGAN/code/util/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCDM/KB4Rec/HEAD/Projects/UPGAN/code/util/utils.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCDM/KB4Rec/HEAD/README.md -------------------------------------------------------------------------------- /dump.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCDM/KB4Rec/HEAD/dump.jpg -------------------------------------------------------------------------------- /expansion/2step/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCDM/KB4Rec/HEAD/expansion/2step/README.md -------------------------------------------------------------------------------- /expansion/2step/filter_ent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCDM/KB4Rec/HEAD/expansion/2step/filter_ent.py -------------------------------------------------------------------------------- /expansion/2step/run_2step.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCDM/KB4Rec/HEAD/expansion/2step/run_2step.sh -------------------------------------------------------------------------------- /expansion/2step/scan_triple_2step.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCDM/KB4Rec/HEAD/expansion/2step/scan_triple_2step.py -------------------------------------------------------------------------------- /expansion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCDM/KB4Rec/HEAD/expansion/README.md -------------------------------------------------------------------------------- /expansion/run_1step.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCDM/KB4Rec/HEAD/expansion/run_1step.sh -------------------------------------------------------------------------------- /expansion/scan_triple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCDM/KB4Rec/HEAD/expansion/scan_triple.py -------------------------------------------------------------------------------- /table_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCDM/KB4Rec/HEAD/table_new.png --------------------------------------------------------------------------------