forked from Chain-Mao/Chat-Style-Bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.json
32 lines (32 loc) · 1 KB
/
settings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"llama3_args": {
"model_name_or_path": "/data1/LLaMA-Factory/Llama3-8B-Chinese-Chat",
"adapter_name_or_path": "/data1/LLaMA-Factory/saves/llama3-8b/lora/sft/checkpoint-500",
"template": "llama3",
"finetuning_type": "lora",
"repetition_penalty": 1.2,
"temperature": 0.5,
"max_length": 50,
"top_p": 0.65
},
"qwen2_args": {
"model_name_or_path": "Qwen2-7B-Instruct",
"adapter_name_or_path": "saves/qwen2-7b/lora/sft/checkpoint-800",
"template": "qwen",
"finetuning_type": "lora",
"repetition_penalty": 1.2,
"temperature": 0.5,
"max_length": 50,
"top_p": 0.65
},
"glm4_args": {
"model_name_or_path": "Glm4-9B-Chat",
"adapter_name_or_path": "saves/glm4-9b/lora/sft/checkpoint-400",
"template": "glm4",
"finetuning_type": "lora",
"repetition_penalty": 1.2,
"temperature": 0.5,
"max_length": 50,
"top_p": 0.65
}
}