├── README.md ├── datasets └── datasets_path ├── finetune.py ├── finetune_utils.py ├── graphadapter.py ├── preprocess.py ├── pretrain.py ├── pretrain_utils.py └── prompt_config.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxttkl/GraphAdapter/HEAD/README.md -------------------------------------------------------------------------------- /datasets/datasets_path: -------------------------------------------------------------------------------- 1 | path of datasets 2 | 3 | -------------------------------------------------------------------------------- /finetune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxttkl/GraphAdapter/HEAD/finetune.py -------------------------------------------------------------------------------- /finetune_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxttkl/GraphAdapter/HEAD/finetune_utils.py -------------------------------------------------------------------------------- /graphadapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxttkl/GraphAdapter/HEAD/graphadapter.py -------------------------------------------------------------------------------- /preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxttkl/GraphAdapter/HEAD/preprocess.py -------------------------------------------------------------------------------- /pretrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxttkl/GraphAdapter/HEAD/pretrain.py -------------------------------------------------------------------------------- /pretrain_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxttkl/GraphAdapter/HEAD/pretrain_utils.py -------------------------------------------------------------------------------- /prompt_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxttkl/GraphAdapter/HEAD/prompt_config.py --------------------------------------------------------------------------------