├── DGCF_v1 ├── DGCF.py ├── README.md └── utility │ ├── README.md │ ├── batch_test.py │ ├── helper.py │ ├── load_data.py │ ├── metrics.py │ └── parser.py ├── DGCF_v2 └── README.md ├── Data ├── README.md ├── amazon-book │ ├── README.md │ ├── item_list.txt │ ├── test.txt │ ├── train.txt │ └── user_list.txt ├── gowalla │ ├── README.md │ ├── item_list.txt │ ├── test.txt │ ├── train.txt │ └── user_list.txt └── yelp2018 │ ├── README.md │ ├── item_list.txt │ ├── test.txt │ ├── train.txt │ └── user_list.txt └── README.md /DGCF_v1/DGCF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangwang1223/disentangled_graph_collaborative_filtering/HEAD/DGCF_v1/DGCF.py -------------------------------------------------------------------------------- /DGCF_v1/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /DGCF_v1/utility/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /DGCF_v1/utility/batch_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangwang1223/disentangled_graph_collaborative_filtering/HEAD/DGCF_v1/utility/batch_test.py -------------------------------------------------------------------------------- /DGCF_v1/utility/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangwang1223/disentangled_graph_collaborative_filtering/HEAD/DGCF_v1/utility/helper.py -------------------------------------------------------------------------------- /DGCF_v1/utility/load_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangwang1223/disentangled_graph_collaborative_filtering/HEAD/DGCF_v1/utility/load_data.py -------------------------------------------------------------------------------- /DGCF_v1/utility/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangwang1223/disentangled_graph_collaborative_filtering/HEAD/DGCF_v1/utility/metrics.py -------------------------------------------------------------------------------- /DGCF_v1/utility/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangwang1223/disentangled_graph_collaborative_filtering/HEAD/DGCF_v1/utility/parser.py -------------------------------------------------------------------------------- /DGCF_v2/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Data/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Data/amazon-book/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangwang1223/disentangled_graph_collaborative_filtering/HEAD/Data/amazon-book/README.md -------------------------------------------------------------------------------- /Data/amazon-book/item_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangwang1223/disentangled_graph_collaborative_filtering/HEAD/Data/amazon-book/item_list.txt -------------------------------------------------------------------------------- /Data/amazon-book/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangwang1223/disentangled_graph_collaborative_filtering/HEAD/Data/amazon-book/test.txt -------------------------------------------------------------------------------- /Data/amazon-book/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangwang1223/disentangled_graph_collaborative_filtering/HEAD/Data/amazon-book/train.txt -------------------------------------------------------------------------------- /Data/amazon-book/user_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangwang1223/disentangled_graph_collaborative_filtering/HEAD/Data/amazon-book/user_list.txt -------------------------------------------------------------------------------- /Data/gowalla/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangwang1223/disentangled_graph_collaborative_filtering/HEAD/Data/gowalla/README.md -------------------------------------------------------------------------------- /Data/gowalla/item_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangwang1223/disentangled_graph_collaborative_filtering/HEAD/Data/gowalla/item_list.txt -------------------------------------------------------------------------------- /Data/gowalla/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangwang1223/disentangled_graph_collaborative_filtering/HEAD/Data/gowalla/test.txt -------------------------------------------------------------------------------- /Data/gowalla/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangwang1223/disentangled_graph_collaborative_filtering/HEAD/Data/gowalla/train.txt -------------------------------------------------------------------------------- /Data/gowalla/user_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangwang1223/disentangled_graph_collaborative_filtering/HEAD/Data/gowalla/user_list.txt -------------------------------------------------------------------------------- /Data/yelp2018/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Data/yelp2018/item_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangwang1223/disentangled_graph_collaborative_filtering/HEAD/Data/yelp2018/item_list.txt -------------------------------------------------------------------------------- /Data/yelp2018/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangwang1223/disentangled_graph_collaborative_filtering/HEAD/Data/yelp2018/test.txt -------------------------------------------------------------------------------- /Data/yelp2018/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangwang1223/disentangled_graph_collaborative_filtering/HEAD/Data/yelp2018/train.txt -------------------------------------------------------------------------------- /Data/yelp2018/user_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangwang1223/disentangled_graph_collaborative_filtering/HEAD/Data/yelp2018/user_list.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangwang1223/disentangled_graph_collaborative_filtering/HEAD/README.md --------------------------------------------------------------------------------