├── README.md └── knowledge graph embedding的商品推荐系统 ├── TransE_entity_emb.npy ├── TransE_relation_emb.npy ├── __pycache__ ├── dataset.cpython-35.pyc ├── dataset.cpython-36.pyc ├── model.cpython-35.pyc └── model.cpython-36.pyc ├── data ├── buy_data.txt ├── entites.txt ├── entities.txt ├── neg.txt ├── relations.txt ├── test.txt ├── train.txt └── valid.txt ├── dataset.py ├── dataset.pyc ├── generate_data.py ├── main.py ├── model.py ├── negposscore.npy ├── posscore.npy ├── run.py ├── run.sh ├── use.py ├── 说明.txt └── 运行结果图 └── 运行结果图.png /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhankun-Xiong/Recommendation-system-based-on-knowledge-graph-embedding/HEAD/README.md -------------------------------------------------------------------------------- /knowledge graph embedding的商品推荐系统/TransE_entity_emb.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhankun-Xiong/Recommendation-system-based-on-knowledge-graph-embedding/HEAD/knowledge graph embedding的商品推荐系统/TransE_entity_emb.npy -------------------------------------------------------------------------------- /knowledge graph embedding的商品推荐系统/TransE_relation_emb.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhankun-Xiong/Recommendation-system-based-on-knowledge-graph-embedding/HEAD/knowledge graph embedding的商品推荐系统/TransE_relation_emb.npy -------------------------------------------------------------------------------- /knowledge graph embedding的商品推荐系统/__pycache__/dataset.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhankun-Xiong/Recommendation-system-based-on-knowledge-graph-embedding/HEAD/knowledge graph embedding的商品推荐系统/__pycache__/dataset.cpython-35.pyc -------------------------------------------------------------------------------- /knowledge graph embedding的商品推荐系统/__pycache__/dataset.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhankun-Xiong/Recommendation-system-based-on-knowledge-graph-embedding/HEAD/knowledge graph embedding的商品推荐系统/__pycache__/dataset.cpython-36.pyc -------------------------------------------------------------------------------- /knowledge graph embedding的商品推荐系统/__pycache__/model.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhankun-Xiong/Recommendation-system-based-on-knowledge-graph-embedding/HEAD/knowledge graph embedding的商品推荐系统/__pycache__/model.cpython-35.pyc -------------------------------------------------------------------------------- /knowledge graph embedding的商品推荐系统/__pycache__/model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhankun-Xiong/Recommendation-system-based-on-knowledge-graph-embedding/HEAD/knowledge graph embedding的商品推荐系统/__pycache__/model.cpython-36.pyc -------------------------------------------------------------------------------- /knowledge graph embedding的商品推荐系统/data/buy_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhankun-Xiong/Recommendation-system-based-on-knowledge-graph-embedding/HEAD/knowledge graph embedding的商品推荐系统/data/buy_data.txt -------------------------------------------------------------------------------- /knowledge graph embedding的商品推荐系统/data/entites.txt: -------------------------------------------------------------------------------- 1 | buy 0 2 | -------------------------------------------------------------------------------- /knowledge graph embedding的商品推荐系统/data/entities.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhankun-Xiong/Recommendation-system-based-on-knowledge-graph-embedding/HEAD/knowledge graph embedding的商品推荐系统/data/entities.txt -------------------------------------------------------------------------------- /knowledge graph embedding的商品推荐系统/data/neg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhankun-Xiong/Recommendation-system-based-on-knowledge-graph-embedding/HEAD/knowledge graph embedding的商品推荐系统/data/neg.txt -------------------------------------------------------------------------------- /knowledge graph embedding的商品推荐系统/data/relations.txt: -------------------------------------------------------------------------------- 1 | buy 0 2 | -------------------------------------------------------------------------------- /knowledge graph embedding的商品推荐系统/data/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhankun-Xiong/Recommendation-system-based-on-knowledge-graph-embedding/HEAD/knowledge graph embedding的商品推荐系统/data/test.txt -------------------------------------------------------------------------------- /knowledge graph embedding的商品推荐系统/data/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhankun-Xiong/Recommendation-system-based-on-knowledge-graph-embedding/HEAD/knowledge graph embedding的商品推荐系统/data/train.txt -------------------------------------------------------------------------------- /knowledge graph embedding的商品推荐系统/data/valid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhankun-Xiong/Recommendation-system-based-on-knowledge-graph-embedding/HEAD/knowledge graph embedding的商品推荐系统/data/valid.txt -------------------------------------------------------------------------------- /knowledge graph embedding的商品推荐系统/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhankun-Xiong/Recommendation-system-based-on-knowledge-graph-embedding/HEAD/knowledge graph embedding的商品推荐系统/dataset.py -------------------------------------------------------------------------------- /knowledge graph embedding的商品推荐系统/dataset.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhankun-Xiong/Recommendation-system-based-on-knowledge-graph-embedding/HEAD/knowledge graph embedding的商品推荐系统/dataset.pyc -------------------------------------------------------------------------------- /knowledge graph embedding的商品推荐系统/generate_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhankun-Xiong/Recommendation-system-based-on-knowledge-graph-embedding/HEAD/knowledge graph embedding的商品推荐系统/generate_data.py -------------------------------------------------------------------------------- /knowledge graph embedding的商品推荐系统/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhankun-Xiong/Recommendation-system-based-on-knowledge-graph-embedding/HEAD/knowledge graph embedding的商品推荐系统/main.py -------------------------------------------------------------------------------- /knowledge graph embedding的商品推荐系统/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhankun-Xiong/Recommendation-system-based-on-knowledge-graph-embedding/HEAD/knowledge graph embedding的商品推荐系统/model.py -------------------------------------------------------------------------------- /knowledge graph embedding的商品推荐系统/negposscore.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhankun-Xiong/Recommendation-system-based-on-knowledge-graph-embedding/HEAD/knowledge graph embedding的商品推荐系统/negposscore.npy -------------------------------------------------------------------------------- /knowledge graph embedding的商品推荐系统/posscore.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhankun-Xiong/Recommendation-system-based-on-knowledge-graph-embedding/HEAD/knowledge graph embedding的商品推荐系统/posscore.npy -------------------------------------------------------------------------------- /knowledge graph embedding的商品推荐系统/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhankun-Xiong/Recommendation-system-based-on-knowledge-graph-embedding/HEAD/knowledge graph embedding的商品推荐系统/run.py -------------------------------------------------------------------------------- /knowledge graph embedding的商品推荐系统/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhankun-Xiong/Recommendation-system-based-on-knowledge-graph-embedding/HEAD/knowledge graph embedding的商品推荐系统/run.sh -------------------------------------------------------------------------------- /knowledge graph embedding的商品推荐系统/use.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhankun-Xiong/Recommendation-system-based-on-knowledge-graph-embedding/HEAD/knowledge graph embedding的商品推荐系统/use.py -------------------------------------------------------------------------------- /knowledge graph embedding的商品推荐系统/说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhankun-Xiong/Recommendation-system-based-on-knowledge-graph-embedding/HEAD/knowledge graph embedding的商品推荐系统/说明.txt -------------------------------------------------------------------------------- /knowledge graph embedding的商品推荐系统/运行结果图/运行结果图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhankun-Xiong/Recommendation-system-based-on-knowledge-graph-embedding/HEAD/knowledge graph embedding的商品推荐系统/运行结果图/运行结果图.png --------------------------------------------------------------------------------