├── .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: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.idea/GraphNN.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 11 | -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 85 | 86 | 87 | 88 | selfLoop 89 | 90 | 91 | 92 | 94 | 95 | 104 | 105 | 106 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 |