├── Data ├── README ├── 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 ├── NGCF ├── NGCF.py ├── __init__.py ├── main.py └── utility │ ├── README.md │ ├── batch_test.py │ ├── helper.py │ ├── load_data.py │ ├── metrics.py │ └── parser.py └── README.md /Data/README: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Data/amazon-book/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangtinglin/NGCF-PyTorch/HEAD/Data/amazon-book/README.md -------------------------------------------------------------------------------- /Data/amazon-book/item_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangtinglin/NGCF-PyTorch/HEAD/Data/amazon-book/item_list.txt -------------------------------------------------------------------------------- /Data/amazon-book/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangtinglin/NGCF-PyTorch/HEAD/Data/amazon-book/test.txt -------------------------------------------------------------------------------- /Data/amazon-book/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangtinglin/NGCF-PyTorch/HEAD/Data/amazon-book/train.txt -------------------------------------------------------------------------------- /Data/amazon-book/user_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangtinglin/NGCF-PyTorch/HEAD/Data/amazon-book/user_list.txt -------------------------------------------------------------------------------- /Data/gowalla/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangtinglin/NGCF-PyTorch/HEAD/Data/gowalla/README.md -------------------------------------------------------------------------------- /Data/gowalla/item_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangtinglin/NGCF-PyTorch/HEAD/Data/gowalla/item_list.txt -------------------------------------------------------------------------------- /Data/gowalla/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangtinglin/NGCF-PyTorch/HEAD/Data/gowalla/test.txt -------------------------------------------------------------------------------- /Data/gowalla/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangtinglin/NGCF-PyTorch/HEAD/Data/gowalla/train.txt -------------------------------------------------------------------------------- /Data/gowalla/user_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangtinglin/NGCF-PyTorch/HEAD/Data/gowalla/user_list.txt -------------------------------------------------------------------------------- /NGCF/NGCF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangtinglin/NGCF-PyTorch/HEAD/NGCF/NGCF.py -------------------------------------------------------------------------------- /NGCF/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NGCF/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangtinglin/NGCF-PyTorch/HEAD/NGCF/main.py -------------------------------------------------------------------------------- /NGCF/utility/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /NGCF/utility/batch_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangtinglin/NGCF-PyTorch/HEAD/NGCF/utility/batch_test.py -------------------------------------------------------------------------------- /NGCF/utility/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangtinglin/NGCF-PyTorch/HEAD/NGCF/utility/helper.py -------------------------------------------------------------------------------- /NGCF/utility/load_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangtinglin/NGCF-PyTorch/HEAD/NGCF/utility/load_data.py -------------------------------------------------------------------------------- /NGCF/utility/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangtinglin/NGCF-PyTorch/HEAD/NGCF/utility/metrics.py -------------------------------------------------------------------------------- /NGCF/utility/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangtinglin/NGCF-PyTorch/HEAD/NGCF/utility/parser.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangtinglin/NGCF-PyTorch/HEAD/README.md --------------------------------------------------------------------------------