├── .gitignore ├── README.md ├── datasets └── sample.json ├── imgs ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── GOAT-DEMO-001.mp4 ├── logo.png └── logo_new.png ├── llama_13b └── 将原版llama模型放在这里.txt ├── llama_30b └── 将原版llama模型放在这里.txt ├── llama_7b └── 将原版llama模型放在这里.txt ├── models ├── GOAT_001_13B_Lora │ ├── adapter_config.json │ └── adapter_model.bin ├── GOAT_001_7B_Lora │ ├── adapter_config.json │ ├── adapter_model.bin │ ├── added_tokens.json │ ├── special_tokens_map.json │ ├── tokenizer.model │ └── tokenizer_config.json ├── GOAT_13B_sg30k_001_LoRA │ ├── adapter_config.json │ ├── adapter_model.bin │ ├── added_tokens.json │ ├── special_tokens_map.json │ ├── tokenizer.model │ └── tokenizer_config.json └── GOAT_30B_sg30k_001_LoRA │ ├── adapter_config.json │ ├── adapter_model.bin │ ├── added_tokens.json │ ├── special_tokens_map.json │ ├── tokenizer.model │ └── tokenizer_config.json └── src ├── finetune_lora_zh.ipynb ├── infer_lora_zh.ipynb └── web.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotSe7en/GOAT/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotSe7en/GOAT/HEAD/README.md -------------------------------------------------------------------------------- /datasets/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotSe7en/GOAT/HEAD/datasets/sample.json -------------------------------------------------------------------------------- /imgs/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotSe7en/GOAT/HEAD/imgs/1.png -------------------------------------------------------------------------------- /imgs/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotSe7en/GOAT/HEAD/imgs/2.png -------------------------------------------------------------------------------- /imgs/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotSe7en/GOAT/HEAD/imgs/3.png -------------------------------------------------------------------------------- /imgs/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotSe7en/GOAT/HEAD/imgs/4.png -------------------------------------------------------------------------------- /imgs/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotSe7en/GOAT/HEAD/imgs/5.png -------------------------------------------------------------------------------- /imgs/GOAT-DEMO-001.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotSe7en/GOAT/HEAD/imgs/GOAT-DEMO-001.mp4 -------------------------------------------------------------------------------- /imgs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotSe7en/GOAT/HEAD/imgs/logo.png -------------------------------------------------------------------------------- /imgs/logo_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotSe7en/GOAT/HEAD/imgs/logo_new.png -------------------------------------------------------------------------------- /llama_13b/将原版llama模型放在这里.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /llama_30b/将原版llama模型放在这里.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /llama_7b/将原版llama模型放在这里.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/GOAT_001_13B_Lora/adapter_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotSe7en/GOAT/HEAD/models/GOAT_001_13B_Lora/adapter_config.json -------------------------------------------------------------------------------- /models/GOAT_001_13B_Lora/adapter_model.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotSe7en/GOAT/HEAD/models/GOAT_001_13B_Lora/adapter_model.bin -------------------------------------------------------------------------------- /models/GOAT_001_7B_Lora/adapter_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotSe7en/GOAT/HEAD/models/GOAT_001_7B_Lora/adapter_config.json -------------------------------------------------------------------------------- /models/GOAT_001_7B_Lora/adapter_model.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotSe7en/GOAT/HEAD/models/GOAT_001_7B_Lora/adapter_model.bin -------------------------------------------------------------------------------- /models/GOAT_001_7B_Lora/added_tokens.json: -------------------------------------------------------------------------------- 1 | { 2 | "[PAD]": 32000 3 | } 4 | -------------------------------------------------------------------------------- /models/GOAT_001_7B_Lora/special_tokens_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotSe7en/GOAT/HEAD/models/GOAT_001_7B_Lora/special_tokens_map.json -------------------------------------------------------------------------------- /models/GOAT_001_7B_Lora/tokenizer.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotSe7en/GOAT/HEAD/models/GOAT_001_7B_Lora/tokenizer.model -------------------------------------------------------------------------------- /models/GOAT_001_7B_Lora/tokenizer_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotSe7en/GOAT/HEAD/models/GOAT_001_7B_Lora/tokenizer_config.json -------------------------------------------------------------------------------- /models/GOAT_13B_sg30k_001_LoRA/adapter_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotSe7en/GOAT/HEAD/models/GOAT_13B_sg30k_001_LoRA/adapter_config.json -------------------------------------------------------------------------------- /models/GOAT_13B_sg30k_001_LoRA/adapter_model.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotSe7en/GOAT/HEAD/models/GOAT_13B_sg30k_001_LoRA/adapter_model.bin -------------------------------------------------------------------------------- /models/GOAT_13B_sg30k_001_LoRA/added_tokens.json: -------------------------------------------------------------------------------- 1 | { 2 | "[PAD]": 32000 3 | } 4 | -------------------------------------------------------------------------------- /models/GOAT_13B_sg30k_001_LoRA/special_tokens_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotSe7en/GOAT/HEAD/models/GOAT_13B_sg30k_001_LoRA/special_tokens_map.json -------------------------------------------------------------------------------- /models/GOAT_13B_sg30k_001_LoRA/tokenizer.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotSe7en/GOAT/HEAD/models/GOAT_13B_sg30k_001_LoRA/tokenizer.model -------------------------------------------------------------------------------- /models/GOAT_13B_sg30k_001_LoRA/tokenizer_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotSe7en/GOAT/HEAD/models/GOAT_13B_sg30k_001_LoRA/tokenizer_config.json -------------------------------------------------------------------------------- /models/GOAT_30B_sg30k_001_LoRA/adapter_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotSe7en/GOAT/HEAD/models/GOAT_30B_sg30k_001_LoRA/adapter_config.json -------------------------------------------------------------------------------- /models/GOAT_30B_sg30k_001_LoRA/adapter_model.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotSe7en/GOAT/HEAD/models/GOAT_30B_sg30k_001_LoRA/adapter_model.bin -------------------------------------------------------------------------------- /models/GOAT_30B_sg30k_001_LoRA/added_tokens.json: -------------------------------------------------------------------------------- 1 | { 2 | "[PAD]": 32000 3 | } 4 | -------------------------------------------------------------------------------- /models/GOAT_30B_sg30k_001_LoRA/special_tokens_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotSe7en/GOAT/HEAD/models/GOAT_30B_sg30k_001_LoRA/special_tokens_map.json -------------------------------------------------------------------------------- /models/GOAT_30B_sg30k_001_LoRA/tokenizer.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotSe7en/GOAT/HEAD/models/GOAT_30B_sg30k_001_LoRA/tokenizer.model -------------------------------------------------------------------------------- /models/GOAT_30B_sg30k_001_LoRA/tokenizer_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotSe7en/GOAT/HEAD/models/GOAT_30B_sg30k_001_LoRA/tokenizer_config.json -------------------------------------------------------------------------------- /src/finetune_lora_zh.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotSe7en/GOAT/HEAD/src/finetune_lora_zh.ipynb -------------------------------------------------------------------------------- /src/infer_lora_zh.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotSe7en/GOAT/HEAD/src/infer_lora_zh.ipynb -------------------------------------------------------------------------------- /src/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotSe7en/GOAT/HEAD/src/web.py --------------------------------------------------------------------------------