-
Notifications
You must be signed in to change notification settings - Fork 549
/
Copy pathdelivery.json
82 lines (82 loc) · 2.27 KB
/
delivery.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"tasks": [
{
"model_id": "Llama-3.1-8B-Instruct",
"model": "HF://meta-llama/Llama-3.1-8B-Instruct",
"conv_template": "llama-3_1",
"quantization": ["q4f16_ft"]
},
{
"model_id": "Llama-2-7b-chat-hf",
"model": "HF://meta-llama/Llama-2-7b-chat-hf",
"conv_template": "llama-2",
"quantization": ["q4f16_ft"]
},
{
"model_id": "Llama-3.2-1B-Instruct",
"model": "HF://meta-llama/Llama-3.2-1B-Instruct",
"conv_template": "llama-3_1",
"quantization": ["q4f16_ft"]
},
{
"model_id": "Llama-3.2-3B-Instruct",
"model": "HF://meta-llama/Llama-3.2-3B-Instruct",
"conv_template": "llama-3_1",
"quantization": ["q4f16_ft"]
},
{
"model_id": "gemma-2-2b-it",
"model": "HF://google/gemma-2-2b-it",
"conv_template": "gemma_instruction",
"quantization": ["q4f16_ft"]
},
{
"model_id": "gemma-2-9b-it",
"model": "HF://google/gemma-2-9b-it",
"conv_template": "gemma_instruction",
"quantization": ["q4f16_ft"]
},
{
"model_id": "Phi-3.5-mini-instruct",
"model": "HF://microsoft/Phi-3.5-mini-instruct",
"conv_template": "phi-3",
"quantization": ["q4f16_ft"]
},
{
"model_id": "SmolLM2-1.7B-Instruct",
"model": "HF://HuggingFaceTB/SmolLM2-1.7B-Instruct",
"conv_template": "chatml",
"quantization": ["q4f16_ft"]
},
{
"model_id": "SmolLM2-360M-Instruct",
"model": "HF://HuggingFaceTB/SmolLM2-360M-Instruct",
"conv_template": "chatml",
"quantization": ["q4f16_ft"]
},
{
"model_id": "SmolLM2-135M-Instruct",
"model": "HF://HuggingFaceTB/SmolLM2-135M-Instruct",
"conv_template": "chatml",
"quantization": ["q4f16_ft"]
},
{
"model_id": "Qwen2.5-1.5B-Instruct",
"model": "HF://Qwen/Qwen2.5-1.5B-Instruct",
"conv_template": "qwen2",
"quantization": ["q4f16_ft"]
},
{
"model_id": "Qwen2.5-0.5B-Instruct",
"model": "HF://Qwen/Qwen2.5-0.5B-Instruct",
"conv_template": "qwen2",
"quantization": ["q4f16_ft"]
},
{
"model_id": "Qwen2.5-7B-Instruct",
"model": "HF://Qwen/Qwen2.5-7B-Instruct",
"conv_template": "qwen2",
"quantization": ["q4f16_ft"]
}
]
}