Files changed (1) hide show
  1. README.md +188 -177
README.md CHANGED
@@ -1,178 +1,189 @@
1
- ---
2
- language:
3
- - en
4
- - zh
5
- license: apache-2.0
6
- library_name: transformers
7
- tags:
8
- - chat
9
- - conversational
10
- - custom-research
11
- - rp
12
- - roleplay
13
- - tool-use
14
- base_model:
15
- - Qwen/Qwen2.5-14B-Instruct
16
- datasets:
17
- - nvidia/HelpSteer2
18
- - google/Synthetic-Persona-Chat
19
- - mlabonne/orpo-dpo-mix-40k
20
- pipeline_tag: text-generation
21
- new_version: sthenno-com/miscii-14b-1225
22
- model-index:
23
- - name: miscii-14b-1028
24
- results:
25
- - task:
26
- type: text-generation
27
- name: Text Generation
28
- dataset:
29
- name: IFEval (0-Shot)
30
- type: HuggingFaceH4/ifeval
31
- args:
32
- num_few_shot: 0
33
- metrics:
34
- - type: inst_level_strict_acc and prompt_level_strict_acc
35
- value: 82.37
36
- name: strict accuracy
37
- source:
38
- url: https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard?query=sthenno-com/miscii-14b-1028
39
- name: Open LLM Leaderboard
40
- - task:
41
- type: text-generation
42
- name: Text Generation
43
- dataset:
44
- name: BBH (3-Shot)
45
- type: BBH
46
- args:
47
- num_few_shot: 3
48
- metrics:
49
- - type: acc_norm
50
- value: 49.26
51
- name: normalized accuracy
52
- source:
53
- url: https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard?query=sthenno-com/miscii-14b-1028
54
- name: Open LLM Leaderboard
55
- - task:
56
- type: text-generation
57
- name: Text Generation
58
- dataset:
59
- name: MATH Lvl 5 (4-Shot)
60
- type: hendrycks/competition_math
61
- args:
62
- num_few_shot: 4
63
- metrics:
64
- - type: exact_match
65
- value: 6.34
66
- name: exact match
67
- source:
68
- url: https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard?query=sthenno-com/miscii-14b-1028
69
- name: Open LLM Leaderboard
70
- - task:
71
- type: text-generation
72
- name: Text Generation
73
- dataset:
74
- name: GPQA (0-shot)
75
- type: Idavidrein/gpqa
76
- args:
77
- num_few_shot: 0
78
- metrics:
79
- - type: acc_norm
80
- value: 14.21
81
- name: acc_norm
82
- source:
83
- url: https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard?query=sthenno-com/miscii-14b-1028
84
- name: Open LLM Leaderboard
85
- - task:
86
- type: text-generation
87
- name: Text Generation
88
- dataset:
89
- name: MuSR (0-shot)
90
- type: TAUR-Lab/MuSR
91
- args:
92
- num_few_shot: 0
93
- metrics:
94
- - type: acc_norm
95
- value: 12
96
- name: acc_norm
97
- source:
98
- url: https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard?query=sthenno-com/miscii-14b-1028
99
- name: Open LLM Leaderboard
100
- - task:
101
- type: text-generation
102
- name: Text Generation
103
- dataset:
104
- name: MMLU-PRO (5-shot)
105
- type: TIGER-Lab/MMLU-Pro
106
- config: main
107
- split: test
108
- args:
109
- num_few_shot: 5
110
- metrics:
111
- - type: acc
112
- value: 46.14
113
- name: accuracy
114
- source:
115
- url: https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard?query=sthenno-com/miscii-14b-1028
116
- name: Open LLM Leaderboard
117
- ---
118
-
119
- # miscii-14b-1028
120
-
121
- ## Role-based Instructions
122
-
123
- Just parse the following as your system prompt.
124
- Note there is NO `special-tokens` here.
125
-
126
- An example system prompt:
127
-
128
- ```python
129
- system_prompt: str = (
130
- """<|context_start|>personas<|context_sep|>
131
- <|persona_start|>user<|persona_sep|>
132
- {user_persona}<|persona_end|>
133
- <|persona_start|>assistant<|persona_sep|>
134
- {assistant_persona}<|persona_end|><|context_end|>""".format(
135
- user_persona="""I am Miscii.
136
- I am the designer of Sthenno.
137
- [Optional: Additional statements]""",
138
- assistant_persona="""I am Sthenno.
139
- I speak in Chinese.
140
- [Optional: Additional statements]""",
141
- )
142
- )
143
- ```
144
-
145
- ## Training
146
-
147
- See [Report for miscii-1020](https://api.wandb.ai/links/flandrelabs-carnegie-mellon-university/p35vchzx) for more details.
148
-
149
- -----
150
-
151
- # [Open LLM Leaderboard Evaluation Results](https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard) (0215)
152
-
153
- | Metric |Value|
154
- |-------------------|----:|
155
- |Avg. |35.05|
156
- |IFEval (0-Shot) |82.37|
157
- |BBH (3-Shot) |49.26|
158
- |MATH Lvl 5 (4-Shot)| 6.34|
159
- |GPQA (0-shot) |14.21|
160
- |MuSR (0-shot) |12.00|
161
- |MMLU-PRO (5-shot) |46.14|
162
-
163
-
164
- # [Open LLM Leaderboard Evaluation Results](https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard)
165
-
166
- Refined:
167
-
168
- | Metric |Value|
169
- |-------------------|----:|
170
- |Avg. |42.38|
171
- |IFEval (0-Shot) |82.37|
172
- |BBH (3-Shot) |49.26|
173
- |MATH Lvl 5 (4-Shot)|50.30|
174
- |GPQA (0-shot) |14.21|
175
- |MuSR (0-shot) |12.00|
176
- |MMLU-PRO (5-shot) |46.14|
177
-
 
 
 
 
 
 
 
 
 
 
 
178
  $$\large{\text{There's nothing more to Show}}$$
 
1
+ ---
2
+ language:
3
+ - zho
4
+ - eng
5
+ - fra
6
+ - spa
7
+ - por
8
+ - deu
9
+ - ita
10
+ - rus
11
+ - jpn
12
+ - kor
13
+ - vie
14
+ - tha
15
+ - ara
16
+ license: apache-2.0
17
+ library_name: transformers
18
+ tags:
19
+ - chat
20
+ - conversational
21
+ - custom-research
22
+ - rp
23
+ - roleplay
24
+ - tool-use
25
+ base_model:
26
+ - Qwen/Qwen2.5-14B-Instruct
27
+ datasets:
28
+ - nvidia/HelpSteer2
29
+ - google/Synthetic-Persona-Chat
30
+ - mlabonne/orpo-dpo-mix-40k
31
+ pipeline_tag: text-generation
32
+ new_version: sthenno-com/miscii-14b-1225
33
+ model-index:
34
+ - name: miscii-14b-1028
35
+ results:
36
+ - task:
37
+ type: text-generation
38
+ name: Text Generation
39
+ dataset:
40
+ name: IFEval (0-Shot)
41
+ type: HuggingFaceH4/ifeval
42
+ args:
43
+ num_few_shot: 0
44
+ metrics:
45
+ - type: inst_level_strict_acc and prompt_level_strict_acc
46
+ value: 82.37
47
+ name: strict accuracy
48
+ source:
49
+ url: https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard?query=sthenno-com/miscii-14b-1028
50
+ name: Open LLM Leaderboard
51
+ - task:
52
+ type: text-generation
53
+ name: Text Generation
54
+ dataset:
55
+ name: BBH (3-Shot)
56
+ type: BBH
57
+ args:
58
+ num_few_shot: 3
59
+ metrics:
60
+ - type: acc_norm
61
+ value: 49.26
62
+ name: normalized accuracy
63
+ source:
64
+ url: https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard?query=sthenno-com/miscii-14b-1028
65
+ name: Open LLM Leaderboard
66
+ - task:
67
+ type: text-generation
68
+ name: Text Generation
69
+ dataset:
70
+ name: MATH Lvl 5 (4-Shot)
71
+ type: hendrycks/competition_math
72
+ args:
73
+ num_few_shot: 4
74
+ metrics:
75
+ - type: exact_match
76
+ value: 6.34
77
+ name: exact match
78
+ source:
79
+ url: https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard?query=sthenno-com/miscii-14b-1028
80
+ name: Open LLM Leaderboard
81
+ - task:
82
+ type: text-generation
83
+ name: Text Generation
84
+ dataset:
85
+ name: GPQA (0-shot)
86
+ type: Idavidrein/gpqa
87
+ args:
88
+ num_few_shot: 0
89
+ metrics:
90
+ - type: acc_norm
91
+ value: 14.21
92
+ name: acc_norm
93
+ source:
94
+ url: https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard?query=sthenno-com/miscii-14b-1028
95
+ name: Open LLM Leaderboard
96
+ - task:
97
+ type: text-generation
98
+ name: Text Generation
99
+ dataset:
100
+ name: MuSR (0-shot)
101
+ type: TAUR-Lab/MuSR
102
+ args:
103
+ num_few_shot: 0
104
+ metrics:
105
+ - type: acc_norm
106
+ value: 12
107
+ name: acc_norm
108
+ source:
109
+ url: https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard?query=sthenno-com/miscii-14b-1028
110
+ name: Open LLM Leaderboard
111
+ - task:
112
+ type: text-generation
113
+ name: Text Generation
114
+ dataset:
115
+ name: MMLU-PRO (5-shot)
116
+ type: TIGER-Lab/MMLU-Pro
117
+ config: main
118
+ split: test
119
+ args:
120
+ num_few_shot: 5
121
+ metrics:
122
+ - type: acc
123
+ value: 46.14
124
+ name: accuracy
125
+ source:
126
+ url: https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard?query=sthenno-com/miscii-14b-1028
127
+ name: Open LLM Leaderboard
128
+ ---
129
+
130
+ # miscii-14b-1028
131
+
132
+ ## Role-based Instructions
133
+
134
+ Just parse the following as your system prompt.
135
+ Note there is NO `special-tokens` here.
136
+
137
+ An example system prompt:
138
+
139
+ ```python
140
+ system_prompt: str = (
141
+ """<|context_start|>personas<|context_sep|>
142
+ <|persona_start|>user<|persona_sep|>
143
+ {user_persona}<|persona_end|>
144
+ <|persona_start|>assistant<|persona_sep|>
145
+ {assistant_persona}<|persona_end|><|context_end|>""".format(
146
+ user_persona="""I am Miscii.
147
+ I am the designer of Sthenno.
148
+ [Optional: Additional statements]""",
149
+ assistant_persona="""I am Sthenno.
150
+ I speak in Chinese.
151
+ [Optional: Additional statements]""",
152
+ )
153
+ )
154
+ ```
155
+
156
+ ## Training
157
+
158
+ See [Report for miscii-1020](https://api.wandb.ai/links/flandrelabs-carnegie-mellon-university/p35vchzx) for more details.
159
+
160
+ -----
161
+
162
+ # [Open LLM Leaderboard Evaluation Results](https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard) (0215)
163
+
164
+ | Metric |Value|
165
+ |-------------------|----:|
166
+ |Avg. |35.05|
167
+ |IFEval (0-Shot) |82.37|
168
+ |BBH (3-Shot) |49.26|
169
+ |MATH Lvl 5 (4-Shot)| 6.34|
170
+ |GPQA (0-shot) |14.21|
171
+ |MuSR (0-shot) |12.00|
172
+ |MMLU-PRO (5-shot) |46.14|
173
+
174
+
175
+ # [Open LLM Leaderboard Evaluation Results](https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard)
176
+
177
+ Refined:
178
+
179
+ | Metric |Value|
180
+ |-------------------|----:|
181
+ |Avg. |42.38|
182
+ |IFEval (0-Shot) |82.37|
183
+ |BBH (3-Shot) |49.26|
184
+ |MATH Lvl 5 (4-Shot)|50.30|
185
+ |GPQA (0-shot) |14.21|
186
+ |MuSR (0-shot) |12.00|
187
+ |MMLU-PRO (5-shot) |46.14|
188
+
189
  $$\large{\text{There's nothing more to Show}}$$