├── .gitignore ├── .ipynb_checkpoints ├── Backup2-checkpoint.ipynb └── TAGCN-checkpoint.ipynb ├── Backup2.ipynb ├── LICENSE ├── README.md ├── TAGCN-backup.ipynb ├── TAGCN.ipynb ├── __init__.py ├── __pycache__ ├── inits.cpython-36.pyc ├── layers.cpython-36.pyc ├── metrics.cpython-36.pyc ├── models.cpython-36.pyc └── utils.cpython-36.pyc ├── data ├── ind.citeseer.allx ├── ind.citeseer.ally ├── ind.citeseer.graph ├── ind.citeseer.test.index ├── ind.citeseer.tx ├── ind.citeseer.ty ├── ind.citeseer.x ├── ind.citeseer.y ├── ind.cora.allx ├── ind.cora.ally ├── ind.cora.graph ├── ind.cora.test.index ├── ind.cora.tx ├── ind.cora.ty ├── ind.cora.x ├── ind.cora.y ├── ind.pubmed.allx ├── ind.pubmed.ally ├── ind.pubmed.graph ├── ind.pubmed.test.index ├── ind.pubmed.tx ├── ind.pubmed.ty ├── ind.pubmed.x └── ind.pubmed.y ├── inits.py ├── layers.py ├── metrics.py ├── models.py ├── notes.txt ├── path_weights.py ├── tagcn-bak.py ├── tagcn.py ├── tagcn2.py ├── tmp ├── checkpoint ├── events.out.tfevents.1519887481.hkueee-Opti-1080 ├── events.out.tfevents.1519888304.hkueee-Opti-1080 ├── tagcn.ckpt.data-00000-of-00001 ├── tagcn.ckpt.index └── tagcn.ckpt.meta ├── train.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.dat 2 | *.pyc 3 | -------------------------------------------------------------------------------- /.ipynb_checkpoints/Backup2-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/.ipynb_checkpoints/Backup2-checkpoint.ipynb -------------------------------------------------------------------------------- /.ipynb_checkpoints/TAGCN-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/.ipynb_checkpoints/TAGCN-checkpoint.ipynb -------------------------------------------------------------------------------- /Backup2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/Backup2.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/README.md -------------------------------------------------------------------------------- /TAGCN-backup.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/TAGCN-backup.ipynb -------------------------------------------------------------------------------- /TAGCN.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/TAGCN.ipynb -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/__init__.py -------------------------------------------------------------------------------- /__pycache__/inits.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/__pycache__/inits.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/layers.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/__pycache__/layers.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/metrics.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/__pycache__/metrics.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /data/ind.citeseer.allx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/data/ind.citeseer.allx -------------------------------------------------------------------------------- /data/ind.citeseer.ally: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/data/ind.citeseer.ally -------------------------------------------------------------------------------- /data/ind.citeseer.graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/data/ind.citeseer.graph -------------------------------------------------------------------------------- /data/ind.citeseer.test.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/data/ind.citeseer.test.index -------------------------------------------------------------------------------- /data/ind.citeseer.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/data/ind.citeseer.tx -------------------------------------------------------------------------------- /data/ind.citeseer.ty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/data/ind.citeseer.ty -------------------------------------------------------------------------------- /data/ind.citeseer.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/data/ind.citeseer.x -------------------------------------------------------------------------------- /data/ind.citeseer.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/data/ind.citeseer.y -------------------------------------------------------------------------------- /data/ind.cora.allx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/data/ind.cora.allx -------------------------------------------------------------------------------- /data/ind.cora.ally: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/data/ind.cora.ally -------------------------------------------------------------------------------- /data/ind.cora.graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/data/ind.cora.graph -------------------------------------------------------------------------------- /data/ind.cora.test.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/data/ind.cora.test.index -------------------------------------------------------------------------------- /data/ind.cora.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/data/ind.cora.tx -------------------------------------------------------------------------------- /data/ind.cora.ty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/data/ind.cora.ty -------------------------------------------------------------------------------- /data/ind.cora.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/data/ind.cora.x -------------------------------------------------------------------------------- /data/ind.cora.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/data/ind.cora.y -------------------------------------------------------------------------------- /data/ind.pubmed.allx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/data/ind.pubmed.allx -------------------------------------------------------------------------------- /data/ind.pubmed.ally: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/data/ind.pubmed.ally -------------------------------------------------------------------------------- /data/ind.pubmed.graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/data/ind.pubmed.graph -------------------------------------------------------------------------------- /data/ind.pubmed.test.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/data/ind.pubmed.test.index -------------------------------------------------------------------------------- /data/ind.pubmed.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/data/ind.pubmed.tx -------------------------------------------------------------------------------- /data/ind.pubmed.ty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/data/ind.pubmed.ty -------------------------------------------------------------------------------- /data/ind.pubmed.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/data/ind.pubmed.x -------------------------------------------------------------------------------- /data/ind.pubmed.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/data/ind.pubmed.y -------------------------------------------------------------------------------- /inits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/inits.py -------------------------------------------------------------------------------- /layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/layers.py -------------------------------------------------------------------------------- /metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/metrics.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/models.py -------------------------------------------------------------------------------- /notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/notes.txt -------------------------------------------------------------------------------- /path_weights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/path_weights.py -------------------------------------------------------------------------------- /tagcn-bak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/tagcn-bak.py -------------------------------------------------------------------------------- /tagcn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/tagcn.py -------------------------------------------------------------------------------- /tagcn2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/tagcn2.py -------------------------------------------------------------------------------- /tmp/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/tmp/checkpoint -------------------------------------------------------------------------------- /tmp/events.out.tfevents.1519887481.hkueee-Opti-1080: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/tmp/events.out.tfevents.1519887481.hkueee-Opti-1080 -------------------------------------------------------------------------------- /tmp/events.out.tfevents.1519888304.hkueee-Opti-1080: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/tmp/events.out.tfevents.1519888304.hkueee-Opti-1080 -------------------------------------------------------------------------------- /tmp/tagcn.ckpt.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/tmp/tagcn.ckpt.data-00000-of-00001 -------------------------------------------------------------------------------- /tmp/tagcn.ckpt.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/tmp/tagcn.ckpt.index -------------------------------------------------------------------------------- /tmp/tagcn.ckpt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/tmp/tagcn.ckpt.meta -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krohak/TAGCN/HEAD/utils.py --------------------------------------------------------------------------------