├── README.md ├── backbone.py ├── gsl.py ├── layers.py ├── main.py ├── param_parser.py ├── results ├── COLLAB_GCN.pth ├── IMDB-BINARY_GCN.pth ├── IMDB-MULTI_GCN.pth └── REDDIT-BINARY_GCN.pth ├── train_eval.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/VIB-GSL/HEAD/README.md -------------------------------------------------------------------------------- /backbone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/VIB-GSL/HEAD/backbone.py -------------------------------------------------------------------------------- /gsl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/VIB-GSL/HEAD/gsl.py -------------------------------------------------------------------------------- /layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/VIB-GSL/HEAD/layers.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/VIB-GSL/HEAD/main.py -------------------------------------------------------------------------------- /param_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/VIB-GSL/HEAD/param_parser.py -------------------------------------------------------------------------------- /results/COLLAB_GCN.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/VIB-GSL/HEAD/results/COLLAB_GCN.pth -------------------------------------------------------------------------------- /results/IMDB-BINARY_GCN.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/VIB-GSL/HEAD/results/IMDB-BINARY_GCN.pth -------------------------------------------------------------------------------- /results/IMDB-MULTI_GCN.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/VIB-GSL/HEAD/results/IMDB-MULTI_GCN.pth -------------------------------------------------------------------------------- /results/REDDIT-BINARY_GCN.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/VIB-GSL/HEAD/results/REDDIT-BINARY_GCN.pth -------------------------------------------------------------------------------- /train_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/VIB-GSL/HEAD/train_eval.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/VIB-GSL/HEAD/utils.py --------------------------------------------------------------------------------