├── LICENSE ├── README.md ├── __pycache__ └── data_utils.cpython-36.pyc ├── data └── train ├── data_utils.py ├── model.py ├── models ├── checkpoint ├── data_map.pkl ├── transR.ckpt.data-00000-of-00001 ├── transR.ckpt.index └── transR.ckpt.meta └── transR.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanwii/Cluster-based-TransR/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanwii/Cluster-based-TransR/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/data_utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanwii/Cluster-based-TransR/HEAD/__pycache__/data_utils.cpython-36.pyc -------------------------------------------------------------------------------- /data/train: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanwii/Cluster-based-TransR/HEAD/data/train -------------------------------------------------------------------------------- /data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanwii/Cluster-based-TransR/HEAD/data_utils.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanwii/Cluster-based-TransR/HEAD/model.py -------------------------------------------------------------------------------- /models/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanwii/Cluster-based-TransR/HEAD/models/checkpoint -------------------------------------------------------------------------------- /models/data_map.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanwii/Cluster-based-TransR/HEAD/models/data_map.pkl -------------------------------------------------------------------------------- /models/transR.ckpt.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanwii/Cluster-based-TransR/HEAD/models/transR.ckpt.data-00000-of-00001 -------------------------------------------------------------------------------- /models/transR.ckpt.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanwii/Cluster-based-TransR/HEAD/models/transR.ckpt.index -------------------------------------------------------------------------------- /models/transR.ckpt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanwii/Cluster-based-TransR/HEAD/models/transR.ckpt.meta -------------------------------------------------------------------------------- /transR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanwii/Cluster-based-TransR/HEAD/transR.py --------------------------------------------------------------------------------