├── .gitignore ├── CITATION.cff ├── LICENSE ├── README.md ├── cff-version 1.2.0.cliff.txt ├── data └── alpaca_data.json ├── requirements.txt └── src ├── configs ├── deepspeed_config.json └── hostfile ├── environment_ChatPath.yml ├── generate.py ├── imgs ├── chatpath_logo.png ├── data_process.png ├── pathgpt_instruction.png └── pathgpt_logo.png ├── train.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/PathGPT/HEAD/.gitignore -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/PathGPT/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/PathGPT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/PathGPT/HEAD/README.md -------------------------------------------------------------------------------- /cff-version 1.2.0.cliff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/PathGPT/HEAD/cff-version 1.2.0.cliff.txt -------------------------------------------------------------------------------- /data/alpaca_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/PathGPT/HEAD/data/alpaca_data.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/PathGPT/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/configs/deepspeed_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/PathGPT/HEAD/src/configs/deepspeed_config.json -------------------------------------------------------------------------------- /src/configs/hostfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/PathGPT/HEAD/src/configs/hostfile -------------------------------------------------------------------------------- /src/environment_ChatPath.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/PathGPT/HEAD/src/environment_ChatPath.yml -------------------------------------------------------------------------------- /src/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/PathGPT/HEAD/src/generate.py -------------------------------------------------------------------------------- /src/imgs/chatpath_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/PathGPT/HEAD/src/imgs/chatpath_logo.png -------------------------------------------------------------------------------- /src/imgs/data_process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/PathGPT/HEAD/src/imgs/data_process.png -------------------------------------------------------------------------------- /src/imgs/pathgpt_instruction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/PathGPT/HEAD/src/imgs/pathgpt_instruction.png -------------------------------------------------------------------------------- /src/imgs/pathgpt_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/PathGPT/HEAD/src/imgs/pathgpt_logo.png -------------------------------------------------------------------------------- /src/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/PathGPT/HEAD/src/train.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/PathGPT/HEAD/src/utils.py --------------------------------------------------------------------------------