├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── data ├── sample_ym_kg_neo4j_data.csv ├── yahoo_movie_dataset │ ├── WebscopeReadMe.txt │ ├── movies.csv │ ├── movies_meta.csv │ ├── ratings.csv │ ├── readme.txt │ ├── users.csv │ ├── ydata-ymovies-mapping-to-eachmovie-v1_0.txt │ ├── ydata-ymovies-mapping-to-movielens-v1_0.txt │ ├── ydata-ymovies-movie-content-descr-v1_0.txt │ ├── ydata-ymovies-user-demographics-v1_0.txt │ ├── ydata-ymovies-user-movie-ratings-test-v1_0.txt │ └── ydata-ymovies-user-movie-ratings-train-v1_0.txt └── ym_kg_neo4j_data.csv ├── image ├── integrated_reckg.png ├── neo4j_visulalization.png └── simple_reckg.png ├── kg-merge.py ├── movielens-kg.py ├── movielens-tmdb-merge.py ├── neo4j-query ├── integrated_RecKG.cypher ├── ml_simple.cypher └── ym_simple.cypher ├── source └── RecKG.PNG ├── utils.py └── yahoo-movie-kg.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-jhk/RecKG/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-jhk/RecKG/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-jhk/RecKG/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-jhk/RecKG/HEAD/README.md -------------------------------------------------------------------------------- /data/sample_ym_kg_neo4j_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-jhk/RecKG/HEAD/data/sample_ym_kg_neo4j_data.csv -------------------------------------------------------------------------------- /data/yahoo_movie_dataset/WebscopeReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-jhk/RecKG/HEAD/data/yahoo_movie_dataset/WebscopeReadMe.txt -------------------------------------------------------------------------------- /data/yahoo_movie_dataset/movies.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-jhk/RecKG/HEAD/data/yahoo_movie_dataset/movies.csv -------------------------------------------------------------------------------- /data/yahoo_movie_dataset/movies_meta.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-jhk/RecKG/HEAD/data/yahoo_movie_dataset/movies_meta.csv -------------------------------------------------------------------------------- /data/yahoo_movie_dataset/ratings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-jhk/RecKG/HEAD/data/yahoo_movie_dataset/ratings.csv -------------------------------------------------------------------------------- /data/yahoo_movie_dataset/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-jhk/RecKG/HEAD/data/yahoo_movie_dataset/readme.txt -------------------------------------------------------------------------------- /data/yahoo_movie_dataset/users.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-jhk/RecKG/HEAD/data/yahoo_movie_dataset/users.csv -------------------------------------------------------------------------------- /data/yahoo_movie_dataset/ydata-ymovies-mapping-to-eachmovie-v1_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-jhk/RecKG/HEAD/data/yahoo_movie_dataset/ydata-ymovies-mapping-to-eachmovie-v1_0.txt -------------------------------------------------------------------------------- /data/yahoo_movie_dataset/ydata-ymovies-mapping-to-movielens-v1_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-jhk/RecKG/HEAD/data/yahoo_movie_dataset/ydata-ymovies-mapping-to-movielens-v1_0.txt -------------------------------------------------------------------------------- /data/yahoo_movie_dataset/ydata-ymovies-movie-content-descr-v1_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-jhk/RecKG/HEAD/data/yahoo_movie_dataset/ydata-ymovies-movie-content-descr-v1_0.txt -------------------------------------------------------------------------------- /data/yahoo_movie_dataset/ydata-ymovies-user-demographics-v1_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-jhk/RecKG/HEAD/data/yahoo_movie_dataset/ydata-ymovies-user-demographics-v1_0.txt -------------------------------------------------------------------------------- /data/yahoo_movie_dataset/ydata-ymovies-user-movie-ratings-test-v1_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-jhk/RecKG/HEAD/data/yahoo_movie_dataset/ydata-ymovies-user-movie-ratings-test-v1_0.txt -------------------------------------------------------------------------------- /data/yahoo_movie_dataset/ydata-ymovies-user-movie-ratings-train-v1_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-jhk/RecKG/HEAD/data/yahoo_movie_dataset/ydata-ymovies-user-movie-ratings-train-v1_0.txt -------------------------------------------------------------------------------- /data/ym_kg_neo4j_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-jhk/RecKG/HEAD/data/ym_kg_neo4j_data.csv -------------------------------------------------------------------------------- /image/integrated_reckg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-jhk/RecKG/HEAD/image/integrated_reckg.png -------------------------------------------------------------------------------- /image/neo4j_visulalization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-jhk/RecKG/HEAD/image/neo4j_visulalization.png -------------------------------------------------------------------------------- /image/simple_reckg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-jhk/RecKG/HEAD/image/simple_reckg.png -------------------------------------------------------------------------------- /kg-merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-jhk/RecKG/HEAD/kg-merge.py -------------------------------------------------------------------------------- /movielens-kg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-jhk/RecKG/HEAD/movielens-kg.py -------------------------------------------------------------------------------- /movielens-tmdb-merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-jhk/RecKG/HEAD/movielens-tmdb-merge.py -------------------------------------------------------------------------------- /neo4j-query/integrated_RecKG.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-jhk/RecKG/HEAD/neo4j-query/integrated_RecKG.cypher -------------------------------------------------------------------------------- /neo4j-query/ml_simple.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-jhk/RecKG/HEAD/neo4j-query/ml_simple.cypher -------------------------------------------------------------------------------- /neo4j-query/ym_simple.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-jhk/RecKG/HEAD/neo4j-query/ym_simple.cypher -------------------------------------------------------------------------------- /source/RecKG.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-jhk/RecKG/HEAD/source/RecKG.PNG -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-jhk/RecKG/HEAD/utils.py -------------------------------------------------------------------------------- /yahoo-movie-kg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-jhk/RecKG/HEAD/yahoo-movie-kg.py --------------------------------------------------------------------------------