├── .gitignore ├── LICENSE ├── README.md ├── doc └── fw.jpg ├── my_model.py ├── prod_config.yaml ├── prod_multi_exp.py ├── prod_train.py ├── requirements.txt ├── trans_config.yaml ├── trans_multi_exp.py ├── trans_train.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/LightHGNN/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/LightHGNN/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/LightHGNN/HEAD/README.md -------------------------------------------------------------------------------- /doc/fw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/LightHGNN/HEAD/doc/fw.jpg -------------------------------------------------------------------------------- /my_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/LightHGNN/HEAD/my_model.py -------------------------------------------------------------------------------- /prod_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/LightHGNN/HEAD/prod_config.yaml -------------------------------------------------------------------------------- /prod_multi_exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/LightHGNN/HEAD/prod_multi_exp.py -------------------------------------------------------------------------------- /prod_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/LightHGNN/HEAD/prod_train.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/LightHGNN/HEAD/requirements.txt -------------------------------------------------------------------------------- /trans_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/LightHGNN/HEAD/trans_config.yaml -------------------------------------------------------------------------------- /trans_multi_exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/LightHGNN/HEAD/trans_multi_exp.py -------------------------------------------------------------------------------- /trans_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/LightHGNN/HEAD/trans_train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/LightHGNN/HEAD/utils.py --------------------------------------------------------------------------------