├── .DS_Store ├── Data ├── ACM │ ├── info.dat │ ├── label.dat │ ├── label.dat.test │ ├── link.dat │ ├── node.dat │ └── record.dat └── count.py ├── Evaluate ├── README.md ├── __pycache__ │ ├── link_prediction.cpython-38.pyc │ ├── node_classification.cpython-38.pyc │ └── node_classification_sda.cpython-38.pyc ├── evaluate.py ├── evaluate.sh ├── link_prediction.py └── node_classification.py ├── Model ├── .DS_Store └── CKD │ ├── __init__.py │ └── src │ ├── __init__.py │ ├── __pycache__ │ ├── model.cpython-36.pyc │ ├── model.cpython-38.pyc │ ├── utils.cpython-36.pyc │ └── utils.cpython-38.pyc │ ├── main.py │ ├── main_for_freebase.py │ ├── model.py │ └── utils.py ├── README.md ├── Transform ├── README.md ├── __pycache__ │ ├── dblp_transform_model.cpython-38.pyc │ └── transform_model.cpython-38.pyc ├── dblp_transform.py ├── dblp_transform.sh ├── dblp_transform_model.py ├── transform.py ├── transform.sh └── transform_model.py └── requirements.txt /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoushengisnoob/CKD/HEAD/.DS_Store -------------------------------------------------------------------------------- /Data/ACM/info.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoushengisnoob/CKD/HEAD/Data/ACM/info.dat -------------------------------------------------------------------------------- /Data/ACM/label.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoushengisnoob/CKD/HEAD/Data/ACM/label.dat -------------------------------------------------------------------------------- /Data/ACM/label.dat.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoushengisnoob/CKD/HEAD/Data/ACM/label.dat.test -------------------------------------------------------------------------------- /Data/ACM/link.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoushengisnoob/CKD/HEAD/Data/ACM/link.dat -------------------------------------------------------------------------------- /Data/ACM/node.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoushengisnoob/CKD/HEAD/Data/ACM/node.dat -------------------------------------------------------------------------------- /Data/ACM/record.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoushengisnoob/CKD/HEAD/Data/ACM/record.dat -------------------------------------------------------------------------------- /Data/count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoushengisnoob/CKD/HEAD/Data/count.py -------------------------------------------------------------------------------- /Evaluate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoushengisnoob/CKD/HEAD/Evaluate/README.md -------------------------------------------------------------------------------- /Evaluate/__pycache__/link_prediction.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoushengisnoob/CKD/HEAD/Evaluate/__pycache__/link_prediction.cpython-38.pyc -------------------------------------------------------------------------------- /Evaluate/__pycache__/node_classification.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoushengisnoob/CKD/HEAD/Evaluate/__pycache__/node_classification.cpython-38.pyc -------------------------------------------------------------------------------- /Evaluate/__pycache__/node_classification_sda.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoushengisnoob/CKD/HEAD/Evaluate/__pycache__/node_classification_sda.cpython-38.pyc -------------------------------------------------------------------------------- /Evaluate/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoushengisnoob/CKD/HEAD/Evaluate/evaluate.py -------------------------------------------------------------------------------- /Evaluate/evaluate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoushengisnoob/CKD/HEAD/Evaluate/evaluate.sh -------------------------------------------------------------------------------- /Evaluate/link_prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoushengisnoob/CKD/HEAD/Evaluate/link_prediction.py -------------------------------------------------------------------------------- /Evaluate/node_classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoushengisnoob/CKD/HEAD/Evaluate/node_classification.py -------------------------------------------------------------------------------- /Model/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoushengisnoob/CKD/HEAD/Model/.DS_Store -------------------------------------------------------------------------------- /Model/CKD/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Model/CKD/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Model/CKD/src/__pycache__/model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoushengisnoob/CKD/HEAD/Model/CKD/src/__pycache__/model.cpython-36.pyc -------------------------------------------------------------------------------- /Model/CKD/src/__pycache__/model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoushengisnoob/CKD/HEAD/Model/CKD/src/__pycache__/model.cpython-38.pyc -------------------------------------------------------------------------------- /Model/CKD/src/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoushengisnoob/CKD/HEAD/Model/CKD/src/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /Model/CKD/src/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoushengisnoob/CKD/HEAD/Model/CKD/src/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /Model/CKD/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoushengisnoob/CKD/HEAD/Model/CKD/src/main.py -------------------------------------------------------------------------------- /Model/CKD/src/main_for_freebase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoushengisnoob/CKD/HEAD/Model/CKD/src/main_for_freebase.py -------------------------------------------------------------------------------- /Model/CKD/src/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoushengisnoob/CKD/HEAD/Model/CKD/src/model.py -------------------------------------------------------------------------------- /Model/CKD/src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoushengisnoob/CKD/HEAD/Model/CKD/src/utils.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoushengisnoob/CKD/HEAD/README.md -------------------------------------------------------------------------------- /Transform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoushengisnoob/CKD/HEAD/Transform/README.md -------------------------------------------------------------------------------- /Transform/__pycache__/dblp_transform_model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoushengisnoob/CKD/HEAD/Transform/__pycache__/dblp_transform_model.cpython-38.pyc -------------------------------------------------------------------------------- /Transform/__pycache__/transform_model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoushengisnoob/CKD/HEAD/Transform/__pycache__/transform_model.cpython-38.pyc -------------------------------------------------------------------------------- /Transform/dblp_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoushengisnoob/CKD/HEAD/Transform/dblp_transform.py -------------------------------------------------------------------------------- /Transform/dblp_transform.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoushengisnoob/CKD/HEAD/Transform/dblp_transform.sh -------------------------------------------------------------------------------- /Transform/dblp_transform_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoushengisnoob/CKD/HEAD/Transform/dblp_transform_model.py -------------------------------------------------------------------------------- /Transform/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoushengisnoob/CKD/HEAD/Transform/transform.py -------------------------------------------------------------------------------- /Transform/transform.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoushengisnoob/CKD/HEAD/Transform/transform.sh -------------------------------------------------------------------------------- /Transform/transform_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoushengisnoob/CKD/HEAD/Transform/transform_model.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoushengisnoob/CKD/HEAD/requirements.txt --------------------------------------------------------------------------------