├── Process ├── dataset.py ├── getTwittergraph.py ├── process.py └── rand5fold.py ├── README.md ├── main_bigcn.py ├── main_ebgcn.py ├── model ├── BiGCN.py ├── EBGCN.py └── __init__.py └── tools ├── __init__.py ├── earlystopping.py └── evaluate.py /Process/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weilingwei96/EBGCN/HEAD/Process/dataset.py -------------------------------------------------------------------------------- /Process/getTwittergraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weilingwei96/EBGCN/HEAD/Process/getTwittergraph.py -------------------------------------------------------------------------------- /Process/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weilingwei96/EBGCN/HEAD/Process/process.py -------------------------------------------------------------------------------- /Process/rand5fold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weilingwei96/EBGCN/HEAD/Process/rand5fold.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weilingwei96/EBGCN/HEAD/README.md -------------------------------------------------------------------------------- /main_bigcn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weilingwei96/EBGCN/HEAD/main_bigcn.py -------------------------------------------------------------------------------- /main_ebgcn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weilingwei96/EBGCN/HEAD/main_ebgcn.py -------------------------------------------------------------------------------- /model/BiGCN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weilingwei96/EBGCN/HEAD/model/BiGCN.py -------------------------------------------------------------------------------- /model/EBGCN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weilingwei96/EBGCN/HEAD/model/EBGCN.py -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/earlystopping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weilingwei96/EBGCN/HEAD/tools/earlystopping.py -------------------------------------------------------------------------------- /tools/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weilingwei96/EBGCN/HEAD/tools/evaluate.py --------------------------------------------------------------------------------