├── .gitattributes ├── .idea ├── GraphNN.iml ├── encodings.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── DGLtest.py ├── GraphNCF ├── GCFmodel.py ├── __init__.py ├── __pycache__ │ ├── GCFmodel.cpython-37.pyc │ ├── __init__.cpython-37.pyc │ └── dataPreprosessing.cpython-37.pyc ├── dataPreprosessing.py └── run.py ├── README.md └── toyDataset ├── 1K ├── README ├── allbut.pl ├── mku.sh ├── ml-100k.zip ├── u.data ├── u.genre ├── u.info ├── u.item ├── u.occupation ├── u.user ├── u1.base ├── u1.test ├── u2.base ├── u2.test ├── u3.base ├── u3.test ├── u4.base ├── u4.test ├── u5.base ├── u5.test ├── ua.base ├── ua.test ├── ub.base └── ub.test ├── __init__.py ├── __pycache__ ├── __init__.cpython-37.pyc └── loaddata.cpython-37.pyc └── loaddata.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkingwallace/NGCF-pytorch/HEAD/.gitattributes -------------------------------------------------------------------------------- /.idea/GraphNN.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkingwallace/NGCF-pytorch/HEAD/.idea/GraphNN.iml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkingwallace/NGCF-pytorch/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkingwallace/NGCF-pytorch/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkingwallace/NGCF-pytorch/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkingwallace/NGCF-pytorch/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkingwallace/NGCF-pytorch/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /DGLtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkingwallace/NGCF-pytorch/HEAD/DGLtest.py -------------------------------------------------------------------------------- /GraphNCF/GCFmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkingwallace/NGCF-pytorch/HEAD/GraphNCF/GCFmodel.py -------------------------------------------------------------------------------- /GraphNCF/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GraphNCF/__pycache__/GCFmodel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkingwallace/NGCF-pytorch/HEAD/GraphNCF/__pycache__/GCFmodel.cpython-37.pyc -------------------------------------------------------------------------------- /GraphNCF/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkingwallace/NGCF-pytorch/HEAD/GraphNCF/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /GraphNCF/__pycache__/dataPreprosessing.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkingwallace/NGCF-pytorch/HEAD/GraphNCF/__pycache__/dataPreprosessing.cpython-37.pyc -------------------------------------------------------------------------------- /GraphNCF/dataPreprosessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkingwallace/NGCF-pytorch/HEAD/GraphNCF/dataPreprosessing.py -------------------------------------------------------------------------------- /GraphNCF/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkingwallace/NGCF-pytorch/HEAD/GraphNCF/run.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkingwallace/NGCF-pytorch/HEAD/README.md -------------------------------------------------------------------------------- /toyDataset/1K/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkingwallace/NGCF-pytorch/HEAD/toyDataset/1K/README -------------------------------------------------------------------------------- /toyDataset/1K/allbut.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkingwallace/NGCF-pytorch/HEAD/toyDataset/1K/allbut.pl -------------------------------------------------------------------------------- /toyDataset/1K/mku.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkingwallace/NGCF-pytorch/HEAD/toyDataset/1K/mku.sh -------------------------------------------------------------------------------- /toyDataset/1K/ml-100k.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkingwallace/NGCF-pytorch/HEAD/toyDataset/1K/ml-100k.zip -------------------------------------------------------------------------------- /toyDataset/1K/u.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkingwallace/NGCF-pytorch/HEAD/toyDataset/1K/u.data -------------------------------------------------------------------------------- /toyDataset/1K/u.genre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkingwallace/NGCF-pytorch/HEAD/toyDataset/1K/u.genre -------------------------------------------------------------------------------- /toyDataset/1K/u.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkingwallace/NGCF-pytorch/HEAD/toyDataset/1K/u.info -------------------------------------------------------------------------------- /toyDataset/1K/u.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkingwallace/NGCF-pytorch/HEAD/toyDataset/1K/u.item -------------------------------------------------------------------------------- /toyDataset/1K/u.occupation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkingwallace/NGCF-pytorch/HEAD/toyDataset/1K/u.occupation -------------------------------------------------------------------------------- /toyDataset/1K/u.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkingwallace/NGCF-pytorch/HEAD/toyDataset/1K/u.user -------------------------------------------------------------------------------- /toyDataset/1K/u1.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkingwallace/NGCF-pytorch/HEAD/toyDataset/1K/u1.base -------------------------------------------------------------------------------- /toyDataset/1K/u1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkingwallace/NGCF-pytorch/HEAD/toyDataset/1K/u1.test -------------------------------------------------------------------------------- /toyDataset/1K/u2.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkingwallace/NGCF-pytorch/HEAD/toyDataset/1K/u2.base -------------------------------------------------------------------------------- /toyDataset/1K/u2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkingwallace/NGCF-pytorch/HEAD/toyDataset/1K/u2.test -------------------------------------------------------------------------------- /toyDataset/1K/u3.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkingwallace/NGCF-pytorch/HEAD/toyDataset/1K/u3.base -------------------------------------------------------------------------------- /toyDataset/1K/u3.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkingwallace/NGCF-pytorch/HEAD/toyDataset/1K/u3.test -------------------------------------------------------------------------------- /toyDataset/1K/u4.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkingwallace/NGCF-pytorch/HEAD/toyDataset/1K/u4.base -------------------------------------------------------------------------------- /toyDataset/1K/u4.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkingwallace/NGCF-pytorch/HEAD/toyDataset/1K/u4.test -------------------------------------------------------------------------------- /toyDataset/1K/u5.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkingwallace/NGCF-pytorch/HEAD/toyDataset/1K/u5.base -------------------------------------------------------------------------------- /toyDataset/1K/u5.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkingwallace/NGCF-pytorch/HEAD/toyDataset/1K/u5.test -------------------------------------------------------------------------------- /toyDataset/1K/ua.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkingwallace/NGCF-pytorch/HEAD/toyDataset/1K/ua.base -------------------------------------------------------------------------------- /toyDataset/1K/ua.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkingwallace/NGCF-pytorch/HEAD/toyDataset/1K/ua.test -------------------------------------------------------------------------------- /toyDataset/1K/ub.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkingwallace/NGCF-pytorch/HEAD/toyDataset/1K/ub.base -------------------------------------------------------------------------------- /toyDataset/1K/ub.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkingwallace/NGCF-pytorch/HEAD/toyDataset/1K/ub.test -------------------------------------------------------------------------------- /toyDataset/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toyDataset/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkingwallace/NGCF-pytorch/HEAD/toyDataset/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /toyDataset/__pycache__/loaddata.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkingwallace/NGCF-pytorch/HEAD/toyDataset/__pycache__/loaddata.cpython-37.pyc -------------------------------------------------------------------------------- /toyDataset/loaddata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkingwallace/NGCF-pytorch/HEAD/toyDataset/loaddata.py --------------------------------------------------------------------------------