├── LICENSE ├── README.md ├── data └── relation.txt ├── main.py ├── metalearning ├── learner.py └── meta.py ├── representationlearning ├── bg_gsr.py ├── rgcn_model.py └── ssl.py ├── requirements.txt └── utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprojects/MetaHG/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprojects/MetaHG/HEAD/README.md -------------------------------------------------------------------------------- /data/relation.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprojects/MetaHG/HEAD/main.py -------------------------------------------------------------------------------- /metalearning/learner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprojects/MetaHG/HEAD/metalearning/learner.py -------------------------------------------------------------------------------- /metalearning/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprojects/MetaHG/HEAD/metalearning/meta.py -------------------------------------------------------------------------------- /representationlearning/bg_gsr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprojects/MetaHG/HEAD/representationlearning/bg_gsr.py -------------------------------------------------------------------------------- /representationlearning/rgcn_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprojects/MetaHG/HEAD/representationlearning/rgcn_model.py -------------------------------------------------------------------------------- /representationlearning/ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprojects/MetaHG/HEAD/representationlearning/ssl.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprojects/MetaHG/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprojects/MetaHG/HEAD/utils.py --------------------------------------------------------------------------------