nazdef commited on
Commit
2a0960a
·
verified ·
1 Parent(s): 4b972d0

card: prefer balanced default for medium base release

Browse files
README.md CHANGED
@@ -25,8 +25,6 @@ tags:
25
  - decay-only
26
  ---
27
 
28
- ![Ih4-DhpQJv3BJTj_RG5tR (1) (1)](https://cdn-uploads.huggingface.co/production/uploads/61cf263eb7eeed127532a758/rYYwbJLnEkb8CRD_m6sWu.png)
29
-
30
  # 1gpu-llm Medium EN/IT Base
31
 
32
  This repository is the current **ready-to-use base release** for the `1gpu-llm`
@@ -184,16 +182,31 @@ Short honest read:
184
 
185
  The repo-native decoding sweep was run on this exact checkpoint.
186
 
187
- Winner:
188
 
189
  - tuning winner: `creative`
190
  - holdout winner: `creative`
191
 
192
- Recommended generation params:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
193
 
194
  - `do_sample = true`
195
- - `temperature = 1.0`
196
- - `top_k = 100`
197
  - `top_p = 0.95`
198
  - `repetition_penalty = 1.1`
199
  - `no_repeat_ngram_size = 0`
@@ -201,14 +214,21 @@ Recommended generation params:
201
 
202
  Holdout metrics for the recommended preset:
203
 
204
- - `score = 2.6369`
205
  - `completion_rate = 1.0`
206
- - `distinct_2 = 0.9969`
207
- - `language_consistency_mean = 0.6250`
208
  - `loop_rate = 0.0`
209
  - `repeated_4gram_rate = 0.0`
210
- - `language_switch_rate_mean = 0.0`
211
- - `length_closeness = 0.9437`
 
 
 
 
 
 
 
212
 
213
  Both `generation_config.json` and `recommended_decoding_params.json` are
214
  included in the repo.
 
25
  - decay-only
26
  ---
27
 
 
 
28
  # 1gpu-llm Medium EN/IT Base
29
 
30
  This repository is the current **ready-to-use base release** for the `1gpu-llm`
 
182
 
183
  The repo-native decoding sweep was run on this exact checkpoint.
184
 
185
+ Raw sweep result:
186
 
187
  - tuning winner: `creative`
188
  - holdout winner: `creative`
189
 
190
+ Public default:
191
+
192
+ - keep `balanced` as the recommended preset for the published family-base card
193
+ - rationale:
194
+ - Naz explicitly prefers `balanced` as the default unless `creative` wins
195
+ clearly enough to justify the more aggressive preset
196
+ - on this checkpoint, `creative` does win the holdout score, but not by a
197
+ margin large enough to force a louder default for the public base release
198
+ - practical delta:
199
+ - `creative` holdout score = `2.6369`
200
+ - `balanced` holdout score = `2.4656`
201
+ - delta = `+0.1713`
202
+ - so the repo keeps the stronger exploratory preset documented, but ships the
203
+ calmer preset as the default recommendation
204
+
205
+ Recommended generation params (`balanced`):
206
 
207
  - `do_sample = true`
208
+ - `temperature = 0.8`
209
+ - `top_k = 50`
210
  - `top_p = 0.95`
211
  - `repetition_penalty = 1.1`
212
  - `no_repeat_ngram_size = 0`
 
214
 
215
  Holdout metrics for the recommended preset:
216
 
217
+ - `score = 2.4656`
218
  - `completion_rate = 1.0`
219
+ - `distinct_2 = 0.9878`
220
+ - `language_consistency_mean = 0.6667`
221
  - `loop_rate = 0.0`
222
  - `repeated_4gram_rate = 0.0`
223
+ - `language_switch_rate_mean = 0.2500`
224
+ - `length_closeness = 0.9355`
225
+
226
+ If you want the higher-scoring exploratory preset from the sweep instead:
227
+
228
+ - `creative`
229
+ - `temperature = 1.0`
230
+ - `top_k = 100`
231
+ - holdout score = `2.6369`
232
 
233
  Both `generation_config.json` and `recommended_decoding_params.json` are
234
  included in the repo.
generation_config.json CHANGED
@@ -1,7 +1,7 @@
1
  {
2
  "do_sample": true,
3
- "temperature": 1.0,
4
- "top_k": 100,
5
  "top_p": 0.95,
6
  "repetition_penalty": 1.1,
7
  "max_new_tokens": 64,
 
1
  {
2
  "do_sample": true,
3
+ "temperature": 0.8,
4
+ "top_k": 50,
5
  "top_p": 0.95,
6
  "repetition_penalty": 1.1,
7
  "max_new_tokens": 64,
recommended_decoding_params.json CHANGED
@@ -1,18 +1,20 @@
1
  {
2
- "preset_name": "creative",
3
- "selection_basis": "repo-native decoding search holdout winner for the official medium base release",
4
  "do_sample": true,
5
- "temperature": 1.0,
6
- "top_k": 100,
7
  "top_p": 0.95,
8
  "repetition_penalty": 1.1,
9
  "no_repeat_ngram_size": 0,
10
  "max_new_tokens": 64,
11
- "holdout_score": 2.636900140224359,
12
- "distinct_2": 0.9969230769230769,
13
  "loop_rate": 0.0,
14
  "repeated_4gram_rate": 0.0,
15
- "language_consistency_mean": 0.625,
16
- "language_switch_rate_mean": 0.0,
17
- "length_closeness": 0.9436848958333334
 
 
18
  }
 
1
  {
2
+ "preset_name": "balanced",
3
+ "selection_basis": "public family-base default chosen conservatively; creative won the decoding-search holdout, but not by a large enough margin to override the balanced-default policy",
4
  "do_sample": true,
5
+ "temperature": 0.8,
6
+ "top_k": 50,
7
  "top_p": 0.95,
8
  "repetition_penalty": 1.1,
9
  "no_repeat_ngram_size": 0,
10
  "max_new_tokens": 64,
11
+ "holdout_score": 2.4656392911585368,
12
+ "distinct_2": 0.9878048780487805,
13
  "loop_rate": 0.0,
14
  "repeated_4gram_rate": 0.0,
15
+ "language_consistency_mean": 0.6666666666666666,
16
+ "language_switch_rate_mean": 0.25,
17
+ "length_closeness": 0.935546875,
18
+ "creative_holdout_score": 2.636900140224359,
19
+ "creative_minus_balanced_score_delta": 0.17126084906582216
20
  }