├── .gitignore ├── LICENSE ├── README.md ├── data └── alpaca_data.json ├── requirements.txt └── src ├── configs ├── deepspeed_config.json ├── deepspeed_config_transformers4.31.json └── hostfile ├── conversation.py ├── environment_Llama-X.yml ├── generate.py ├── imgs ├── panda.jpg ├── pandallm.png └── pandallm_git.png ├── train.py ├── train_freeform_multiturn.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AetherCortex/Llama-X/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AetherCortex/Llama-X/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AetherCortex/Llama-X/HEAD/README.md -------------------------------------------------------------------------------- /data/alpaca_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AetherCortex/Llama-X/HEAD/data/alpaca_data.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AetherCortex/Llama-X/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/configs/deepspeed_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AetherCortex/Llama-X/HEAD/src/configs/deepspeed_config.json -------------------------------------------------------------------------------- /src/configs/deepspeed_config_transformers4.31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AetherCortex/Llama-X/HEAD/src/configs/deepspeed_config_transformers4.31.json -------------------------------------------------------------------------------- /src/configs/hostfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AetherCortex/Llama-X/HEAD/src/configs/hostfile -------------------------------------------------------------------------------- /src/conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AetherCortex/Llama-X/HEAD/src/conversation.py -------------------------------------------------------------------------------- /src/environment_Llama-X.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AetherCortex/Llama-X/HEAD/src/environment_Llama-X.yml -------------------------------------------------------------------------------- /src/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AetherCortex/Llama-X/HEAD/src/generate.py -------------------------------------------------------------------------------- /src/imgs/panda.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AetherCortex/Llama-X/HEAD/src/imgs/panda.jpg -------------------------------------------------------------------------------- /src/imgs/pandallm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AetherCortex/Llama-X/HEAD/src/imgs/pandallm.png -------------------------------------------------------------------------------- /src/imgs/pandallm_git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AetherCortex/Llama-X/HEAD/src/imgs/pandallm_git.png -------------------------------------------------------------------------------- /src/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AetherCortex/Llama-X/HEAD/src/train.py -------------------------------------------------------------------------------- /src/train_freeform_multiturn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AetherCortex/Llama-X/HEAD/src/train_freeform_multiturn.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AetherCortex/Llama-X/HEAD/src/utils.py --------------------------------------------------------------------------------