├── .gitignore ├── LICENSE ├── README.md ├── data ├── book │ ├── BX-Book-Ratings.csv │ ├── item_index2entity_id_rehashed.txt │ └── kg_rehashed.txt └── movie │ ├── item_index2entity_id_rehashed.txt │ ├── kg_part1_rehashed.txt │ ├── kg_part2_rehashed.txt │ └── ratings.dat ├── framework.jpg └── src ├── data_loader.py ├── main.py ├── model.py ├── preprocess.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwwang55/RippleNet/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwwang55/RippleNet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwwang55/RippleNet/HEAD/README.md -------------------------------------------------------------------------------- /data/book/BX-Book-Ratings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwwang55/RippleNet/HEAD/data/book/BX-Book-Ratings.csv -------------------------------------------------------------------------------- /data/book/item_index2entity_id_rehashed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwwang55/RippleNet/HEAD/data/book/item_index2entity_id_rehashed.txt -------------------------------------------------------------------------------- /data/book/kg_rehashed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwwang55/RippleNet/HEAD/data/book/kg_rehashed.txt -------------------------------------------------------------------------------- /data/movie/item_index2entity_id_rehashed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwwang55/RippleNet/HEAD/data/movie/item_index2entity_id_rehashed.txt -------------------------------------------------------------------------------- /data/movie/kg_part1_rehashed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwwang55/RippleNet/HEAD/data/movie/kg_part1_rehashed.txt -------------------------------------------------------------------------------- /data/movie/kg_part2_rehashed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwwang55/RippleNet/HEAD/data/movie/kg_part2_rehashed.txt -------------------------------------------------------------------------------- /data/movie/ratings.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwwang55/RippleNet/HEAD/data/movie/ratings.dat -------------------------------------------------------------------------------- /framework.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwwang55/RippleNet/HEAD/framework.jpg -------------------------------------------------------------------------------- /src/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwwang55/RippleNet/HEAD/src/data_loader.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwwang55/RippleNet/HEAD/src/main.py -------------------------------------------------------------------------------- /src/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwwang55/RippleNet/HEAD/src/model.py -------------------------------------------------------------------------------- /src/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwwang55/RippleNet/HEAD/src/preprocess.py -------------------------------------------------------------------------------- /src/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwwang55/RippleNet/HEAD/src/train.py --------------------------------------------------------------------------------