ggcristian commited on
Commit
e57bbdc
·
1 Parent(s): e4a43d4

Add Context length figure

Browse files
config/constants.py CHANGED
@@ -53,6 +53,7 @@ NOTSOTINY_COLUMN_ORDER = [
53
  "Type",
54
  "Model",
55
  "Parameters (B)",
 
56
  "TT06",
57
  "TT07",
58
  "TT08",
 
53
  "Type",
54
  "Model",
55
  "Parameters (B)",
56
+ "Context Length",
57
  "TT06",
58
  "TT07",
59
  "TT08",
pyproject.toml CHANGED
@@ -9,4 +9,5 @@ dependencies = [
9
  "gradio-leaderboard>=0.0.13",
10
  "pandas>=2.2.3",
11
  "plotly>=6.0.1",
 
12
  ]
 
9
  "gradio-leaderboard>=0.0.13",
10
  "pandas>=2.2.3",
11
  "plotly>=6.0.1",
12
+ "transformers>=4.57.3",
13
  ]
results/parse_nst.py CHANGED
@@ -24,7 +24,19 @@ def normalize_model_name(csv_name: str) -> str:
24
  return name_mapping.get(csv_name, csv_name)
25
 
26
 
27
- def get_model_metadata(model_key: str) -> tuple[str, float, str, str, str]:
 
 
 
 
 
 
 
 
 
 
 
 
28
  """Get model metadata from MODELS dictionary."""
29
  try:
30
  model_metadata = MODELS[model_key]
@@ -38,9 +50,15 @@ def get_model_metadata(model_key: str) -> tuple[str, float, str, str, str]:
38
  "Dense", # default architecture
39
  )
40
 
 
 
 
 
 
41
  return (
42
  model_metadata.url,
43
  model_metadata.params,
 
44
  model_metadata.model_type,
45
  model_metadata.release,
46
  model_metadata.model_arch,
@@ -65,7 +83,7 @@ def parse_nst_results(csv_path: str) -> list[dict]:
65
  continue
66
 
67
  model = normalize_model_name(model_csv)
68
- url, params, type, release, reasoning = get_model_metadata(model)
69
 
70
  scores = row[1:]
71
  for tt_column, score_str in zip(tt_columns, scores):
@@ -86,6 +104,7 @@ def parse_nst_results(csv_path: str) -> list[dict]:
86
  "Result": score,
87
  "Model URL": url,
88
  "Params": params,
 
89
  "Release": release,
90
  "Thinking": reasoning,
91
  }
 
24
  return name_mapping.get(csv_name, csv_name)
25
 
26
 
27
+ def get_hf_model_context_length(model_hf_url: str) -> int:
28
+ from transformers import AutoConfig
29
+ model_id = model_hf_url.split("https://huggingface.co/")[-1]
30
+ try:
31
+ config = AutoConfig.from_pretrained(model_id, trust_remote_code=True)
32
+ return config.max_position_embeddings
33
+ except:
34
+ # list of context lengths that are not parseable via config.json
35
+ d = { "henryen/OriGen": 4096 }
36
+ # fallback!
37
+ return d[model_id]
38
+
39
+ def get_model_metadata(model_key: str) -> tuple[str, float, str, str, str, int]:
40
  """Get model metadata from MODELS dictionary."""
41
  try:
42
  model_metadata = MODELS[model_key]
 
50
  "Dense", # default architecture
51
  )
52
 
53
+ try:
54
+ model_context_length = get_hf_model_context_length(model_metadata.url)
55
+ except:
56
+ print(f"Warning: Context length not available for model '{model_key}'")
57
+
58
  return (
59
  model_metadata.url,
60
  model_metadata.params,
61
+ model_context_length,
62
  model_metadata.model_type,
63
  model_metadata.release,
64
  model_metadata.model_arch,
 
83
  continue
84
 
85
  model = normalize_model_name(model_csv)
86
+ url, params, context, type, release, reasoning = get_model_metadata(model)
87
 
88
  scores = row[1:]
89
  for tt_column, score_str in zip(tt_columns, scores):
 
104
  "Result": score,
105
  "Model URL": url,
106
  "Params": params,
107
+ "Context Length": context,
108
  "Release": release,
109
  "Thinking": reasoning,
110
  }
results/results_NST.csv DELETED
@@ -1,13 +0,0 @@
1
- ,TT06,TT07,TT08,TT09,TT10 IHP 02,TT10 IHP 25a,TTSky25a
2
- Kimi-K2-Instruct-0905,12.96,15.59,20.92,21.84,23.33,19.57,18.82
3
- DeepSeek-R1-0528 ,14.63,20.56,19.69,23.84,24.67,20.65,21.07
4
- Qwen3-Coder-480B-A35B-Instruct ,17.96,28.36,22.04,28.32,20.00,28.15,19.17
5
- gpt-oss-120b,17.41,19.21,19.80,31.84,23.33,18.15,16.57
6
- Qwen2.5-72B-Instruct,11.67,12.77,5.61,22.40,22.67,15.11,12.66
7
- Qwen2.5-Coder-32B-Instruct,7.78,10.17,5.92,17.52,13.33,15.43,12.78
8
- Qwen2.5-14B-Instruct-1M,9.81,15.71,15.51,15.92,11.33,12.07,7.10
9
- Qwen2.5-14B-Instruct,5.56,12.88,4.69,15.04,8.00,9.02,7.57
10
- Qwen2.5-7B-Instruct,0.74,6.21,2.86,3.84,7.33,1.74,1.66
11
- HaVen-CodeQwen,2.78,3.39,1.73,7.20,10.67,0.43,3.20
12
- OriGen,4.07,2.71,1.02,5.84,7.33,2.17,0.00
13
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
results/results_NST.json DELETED
@@ -1,849 +0,0 @@
1
- [
2
- {
3
- "Model": "Kimi K2 Instruct 0905",
4
- "Model Type": "General",
5
- "Benchmark": "NotSoTiny",
6
- "Task": "TT06",
7
- "Result": 12.96,
8
- "Model URL": "https://huggingface.co/moonshotai/Kimi-K2-Instruct-0905",
9
- "Params": 1000,
10
- "Release": "V4",
11
- "Thinking": "Dense"
12
- },
13
- {
14
- "Model": "Kimi K2 Instruct 0905",
15
- "Model Type": "General",
16
- "Benchmark": "NotSoTiny",
17
- "Task": "TT07",
18
- "Result": 15.59,
19
- "Model URL": "https://huggingface.co/moonshotai/Kimi-K2-Instruct-0905",
20
- "Params": 1000,
21
- "Release": "V4",
22
- "Thinking": "Dense"
23
- },
24
- {
25
- "Model": "Kimi K2 Instruct 0905",
26
- "Model Type": "General",
27
- "Benchmark": "NotSoTiny",
28
- "Task": "TT08",
29
- "Result": 20.92,
30
- "Model URL": "https://huggingface.co/moonshotai/Kimi-K2-Instruct-0905",
31
- "Params": 1000,
32
- "Release": "V4",
33
- "Thinking": "Dense"
34
- },
35
- {
36
- "Model": "Kimi K2 Instruct 0905",
37
- "Model Type": "General",
38
- "Benchmark": "NotSoTiny",
39
- "Task": "TT09",
40
- "Result": 21.84,
41
- "Model URL": "https://huggingface.co/moonshotai/Kimi-K2-Instruct-0905",
42
- "Params": 1000,
43
- "Release": "V4",
44
- "Thinking": "Dense"
45
- },
46
- {
47
- "Model": "Kimi K2 Instruct 0905",
48
- "Model Type": "General",
49
- "Benchmark": "NotSoTiny",
50
- "Task": "TT10 IHP 02",
51
- "Result": 23.33,
52
- "Model URL": "https://huggingface.co/moonshotai/Kimi-K2-Instruct-0905",
53
- "Params": 1000,
54
- "Release": "V4",
55
- "Thinking": "Dense"
56
- },
57
- {
58
- "Model": "Kimi K2 Instruct 0905",
59
- "Model Type": "General",
60
- "Benchmark": "NotSoTiny",
61
- "Task": "TT10 IHP 25a",
62
- "Result": 19.57,
63
- "Model URL": "https://huggingface.co/moonshotai/Kimi-K2-Instruct-0905",
64
- "Params": 1000,
65
- "Release": "V4",
66
- "Thinking": "Dense"
67
- },
68
- {
69
- "Model": "Kimi K2 Instruct 0905",
70
- "Model Type": "General",
71
- "Benchmark": "NotSoTiny",
72
- "Task": "TTSky25a",
73
- "Result": 18.82,
74
- "Model URL": "https://huggingface.co/moonshotai/Kimi-K2-Instruct-0905",
75
- "Params": 1000,
76
- "Release": "V4",
77
- "Thinking": "Dense"
78
- },
79
- {
80
- "Model": "DeepSeek R1-0528",
81
- "Model Type": "General",
82
- "Benchmark": "NotSoTiny",
83
- "Task": "TT06",
84
- "Result": 14.63,
85
- "Model URL": "https://huggingface.co/deepseek-ai/DeepSeek-R1-0528",
86
- "Params": 685,
87
- "Release": "V2",
88
- "Thinking": "Reasoning"
89
- },
90
- {
91
- "Model": "DeepSeek R1-0528",
92
- "Model Type": "General",
93
- "Benchmark": "NotSoTiny",
94
- "Task": "TT07",
95
- "Result": 20.56,
96
- "Model URL": "https://huggingface.co/deepseek-ai/DeepSeek-R1-0528",
97
- "Params": 685,
98
- "Release": "V2",
99
- "Thinking": "Reasoning"
100
- },
101
- {
102
- "Model": "DeepSeek R1-0528",
103
- "Model Type": "General",
104
- "Benchmark": "NotSoTiny",
105
- "Task": "TT08",
106
- "Result": 19.69,
107
- "Model URL": "https://huggingface.co/deepseek-ai/DeepSeek-R1-0528",
108
- "Params": 685,
109
- "Release": "V2",
110
- "Thinking": "Reasoning"
111
- },
112
- {
113
- "Model": "DeepSeek R1-0528",
114
- "Model Type": "General",
115
- "Benchmark": "NotSoTiny",
116
- "Task": "TT09",
117
- "Result": 23.84,
118
- "Model URL": "https://huggingface.co/deepseek-ai/DeepSeek-R1-0528",
119
- "Params": 685,
120
- "Release": "V2",
121
- "Thinking": "Reasoning"
122
- },
123
- {
124
- "Model": "DeepSeek R1-0528",
125
- "Model Type": "General",
126
- "Benchmark": "NotSoTiny",
127
- "Task": "TT10 IHP 02",
128
- "Result": 24.67,
129
- "Model URL": "https://huggingface.co/deepseek-ai/DeepSeek-R1-0528",
130
- "Params": 685,
131
- "Release": "V2",
132
- "Thinking": "Reasoning"
133
- },
134
- {
135
- "Model": "DeepSeek R1-0528",
136
- "Model Type": "General",
137
- "Benchmark": "NotSoTiny",
138
- "Task": "TT10 IHP 25a",
139
- "Result": 20.65,
140
- "Model URL": "https://huggingface.co/deepseek-ai/DeepSeek-R1-0528",
141
- "Params": 685,
142
- "Release": "V2",
143
- "Thinking": "Reasoning"
144
- },
145
- {
146
- "Model": "DeepSeek R1-0528",
147
- "Model Type": "General",
148
- "Benchmark": "NotSoTiny",
149
- "Task": "TTSky25a",
150
- "Result": 21.07,
151
- "Model URL": "https://huggingface.co/deepseek-ai/DeepSeek-R1-0528",
152
- "Params": 685,
153
- "Release": "V2",
154
- "Thinking": "Reasoning"
155
- },
156
- {
157
- "Model": "Qwen3 Coder 480B A35B",
158
- "Model Type": "Coding",
159
- "Benchmark": "NotSoTiny",
160
- "Task": "TT06",
161
- "Result": 17.96,
162
- "Model URL": "https://huggingface.co/Qwen/Qwen3-Coder-480B-A35B-Instruct",
163
- "Params": 480,
164
- "Release": "V2",
165
- "Thinking": "Dense"
166
- },
167
- {
168
- "Model": "Qwen3 Coder 480B A35B",
169
- "Model Type": "Coding",
170
- "Benchmark": "NotSoTiny",
171
- "Task": "TT07",
172
- "Result": 28.36,
173
- "Model URL": "https://huggingface.co/Qwen/Qwen3-Coder-480B-A35B-Instruct",
174
- "Params": 480,
175
- "Release": "V2",
176
- "Thinking": "Dense"
177
- },
178
- {
179
- "Model": "Qwen3 Coder 480B A35B",
180
- "Model Type": "Coding",
181
- "Benchmark": "NotSoTiny",
182
- "Task": "TT08",
183
- "Result": 22.04,
184
- "Model URL": "https://huggingface.co/Qwen/Qwen3-Coder-480B-A35B-Instruct",
185
- "Params": 480,
186
- "Release": "V2",
187
- "Thinking": "Dense"
188
- },
189
- {
190
- "Model": "Qwen3 Coder 480B A35B",
191
- "Model Type": "Coding",
192
- "Benchmark": "NotSoTiny",
193
- "Task": "TT09",
194
- "Result": 28.32,
195
- "Model URL": "https://huggingface.co/Qwen/Qwen3-Coder-480B-A35B-Instruct",
196
- "Params": 480,
197
- "Release": "V2",
198
- "Thinking": "Dense"
199
- },
200
- {
201
- "Model": "Qwen3 Coder 480B A35B",
202
- "Model Type": "Coding",
203
- "Benchmark": "NotSoTiny",
204
- "Task": "TT10 IHP 02",
205
- "Result": 20.0,
206
- "Model URL": "https://huggingface.co/Qwen/Qwen3-Coder-480B-A35B-Instruct",
207
- "Params": 480,
208
- "Release": "V2",
209
- "Thinking": "Dense"
210
- },
211
- {
212
- "Model": "Qwen3 Coder 480B A35B",
213
- "Model Type": "Coding",
214
- "Benchmark": "NotSoTiny",
215
- "Task": "TT10 IHP 25a",
216
- "Result": 28.15,
217
- "Model URL": "https://huggingface.co/Qwen/Qwen3-Coder-480B-A35B-Instruct",
218
- "Params": 480,
219
- "Release": "V2",
220
- "Thinking": "Dense"
221
- },
222
- {
223
- "Model": "Qwen3 Coder 480B A35B",
224
- "Model Type": "Coding",
225
- "Benchmark": "NotSoTiny",
226
- "Task": "TTSky25a",
227
- "Result": 19.17,
228
- "Model URL": "https://huggingface.co/Qwen/Qwen3-Coder-480B-A35B-Instruct",
229
- "Params": 480,
230
- "Release": "V2",
231
- "Thinking": "Dense"
232
- },
233
- {
234
- "Model": "gpt-oss-120b",
235
- "Model Type": "General",
236
- "Benchmark": "NotSoTiny",
237
- "Task": "TT06",
238
- "Result": 17.41,
239
- "Model URL": "https://huggingface.co/openai/gpt-oss-120b",
240
- "Params": 120,
241
- "Release": "V3",
242
- "Thinking": "Reasoning"
243
- },
244
- {
245
- "Model": "gpt-oss-120b",
246
- "Model Type": "General",
247
- "Benchmark": "NotSoTiny",
248
- "Task": "TT07",
249
- "Result": 19.21,
250
- "Model URL": "https://huggingface.co/openai/gpt-oss-120b",
251
- "Params": 120,
252
- "Release": "V3",
253
- "Thinking": "Reasoning"
254
- },
255
- {
256
- "Model": "gpt-oss-120b",
257
- "Model Type": "General",
258
- "Benchmark": "NotSoTiny",
259
- "Task": "TT08",
260
- "Result": 19.8,
261
- "Model URL": "https://huggingface.co/openai/gpt-oss-120b",
262
- "Params": 120,
263
- "Release": "V3",
264
- "Thinking": "Reasoning"
265
- },
266
- {
267
- "Model": "gpt-oss-120b",
268
- "Model Type": "General",
269
- "Benchmark": "NotSoTiny",
270
- "Task": "TT09",
271
- "Result": 31.84,
272
- "Model URL": "https://huggingface.co/openai/gpt-oss-120b",
273
- "Params": 120,
274
- "Release": "V3",
275
- "Thinking": "Reasoning"
276
- },
277
- {
278
- "Model": "gpt-oss-120b",
279
- "Model Type": "General",
280
- "Benchmark": "NotSoTiny",
281
- "Task": "TT10 IHP 02",
282
- "Result": 23.33,
283
- "Model URL": "https://huggingface.co/openai/gpt-oss-120b",
284
- "Params": 120,
285
- "Release": "V3",
286
- "Thinking": "Reasoning"
287
- },
288
- {
289
- "Model": "gpt-oss-120b",
290
- "Model Type": "General",
291
- "Benchmark": "NotSoTiny",
292
- "Task": "TT10 IHP 25a",
293
- "Result": 18.15,
294
- "Model URL": "https://huggingface.co/openai/gpt-oss-120b",
295
- "Params": 120,
296
- "Release": "V3",
297
- "Thinking": "Reasoning"
298
- },
299
- {
300
- "Model": "gpt-oss-120b",
301
- "Model Type": "General",
302
- "Benchmark": "NotSoTiny",
303
- "Task": "TTSky25a",
304
- "Result": 16.57,
305
- "Model URL": "https://huggingface.co/openai/gpt-oss-120b",
306
- "Params": 120,
307
- "Release": "V3",
308
- "Thinking": "Reasoning"
309
- },
310
- {
311
- "Model": "Qwen2.5 72B",
312
- "Model Type": "General",
313
- "Benchmark": "NotSoTiny",
314
- "Task": "TT06",
315
- "Result": 11.67,
316
- "Model URL": "https://huggingface.co/Qwen/Qwen2.5-72B-Instruct",
317
- "Params": 72.7,
318
- "Release": "V1",
319
- "Thinking": "Dense"
320
- },
321
- {
322
- "Model": "Qwen2.5 72B",
323
- "Model Type": "General",
324
- "Benchmark": "NotSoTiny",
325
- "Task": "TT07",
326
- "Result": 12.77,
327
- "Model URL": "https://huggingface.co/Qwen/Qwen2.5-72B-Instruct",
328
- "Params": 72.7,
329
- "Release": "V1",
330
- "Thinking": "Dense"
331
- },
332
- {
333
- "Model": "Qwen2.5 72B",
334
- "Model Type": "General",
335
- "Benchmark": "NotSoTiny",
336
- "Task": "TT08",
337
- "Result": 5.61,
338
- "Model URL": "https://huggingface.co/Qwen/Qwen2.5-72B-Instruct",
339
- "Params": 72.7,
340
- "Release": "V1",
341
- "Thinking": "Dense"
342
- },
343
- {
344
- "Model": "Qwen2.5 72B",
345
- "Model Type": "General",
346
- "Benchmark": "NotSoTiny",
347
- "Task": "TT09",
348
- "Result": 22.4,
349
- "Model URL": "https://huggingface.co/Qwen/Qwen2.5-72B-Instruct",
350
- "Params": 72.7,
351
- "Release": "V1",
352
- "Thinking": "Dense"
353
- },
354
- {
355
- "Model": "Qwen2.5 72B",
356
- "Model Type": "General",
357
- "Benchmark": "NotSoTiny",
358
- "Task": "TT10 IHP 02",
359
- "Result": 22.67,
360
- "Model URL": "https://huggingface.co/Qwen/Qwen2.5-72B-Instruct",
361
- "Params": 72.7,
362
- "Release": "V1",
363
- "Thinking": "Dense"
364
- },
365
- {
366
- "Model": "Qwen2.5 72B",
367
- "Model Type": "General",
368
- "Benchmark": "NotSoTiny",
369
- "Task": "TT10 IHP 25a",
370
- "Result": 15.11,
371
- "Model URL": "https://huggingface.co/Qwen/Qwen2.5-72B-Instruct",
372
- "Params": 72.7,
373
- "Release": "V1",
374
- "Thinking": "Dense"
375
- },
376
- {
377
- "Model": "Qwen2.5 72B",
378
- "Model Type": "General",
379
- "Benchmark": "NotSoTiny",
380
- "Task": "TTSky25a",
381
- "Result": 12.66,
382
- "Model URL": "https://huggingface.co/Qwen/Qwen2.5-72B-Instruct",
383
- "Params": 72.7,
384
- "Release": "V1",
385
- "Thinking": "Dense"
386
- },
387
- {
388
- "Model": "QwenCoder 2.5 32B",
389
- "Model Type": "Coding",
390
- "Benchmark": "NotSoTiny",
391
- "Task": "TT06",
392
- "Result": 7.78,
393
- "Model URL": "https://huggingface.co/Qwen/Qwen2.5-Coder-32B-Instruct",
394
- "Params": 32.5,
395
- "Release": "V1",
396
- "Thinking": "Dense"
397
- },
398
- {
399
- "Model": "QwenCoder 2.5 32B",
400
- "Model Type": "Coding",
401
- "Benchmark": "NotSoTiny",
402
- "Task": "TT07",
403
- "Result": 10.17,
404
- "Model URL": "https://huggingface.co/Qwen/Qwen2.5-Coder-32B-Instruct",
405
- "Params": 32.5,
406
- "Release": "V1",
407
- "Thinking": "Dense"
408
- },
409
- {
410
- "Model": "QwenCoder 2.5 32B",
411
- "Model Type": "Coding",
412
- "Benchmark": "NotSoTiny",
413
- "Task": "TT08",
414
- "Result": 5.92,
415
- "Model URL": "https://huggingface.co/Qwen/Qwen2.5-Coder-32B-Instruct",
416
- "Params": 32.5,
417
- "Release": "V1",
418
- "Thinking": "Dense"
419
- },
420
- {
421
- "Model": "QwenCoder 2.5 32B",
422
- "Model Type": "Coding",
423
- "Benchmark": "NotSoTiny",
424
- "Task": "TT09",
425
- "Result": 17.52,
426
- "Model URL": "https://huggingface.co/Qwen/Qwen2.5-Coder-32B-Instruct",
427
- "Params": 32.5,
428
- "Release": "V1",
429
- "Thinking": "Dense"
430
- },
431
- {
432
- "Model": "QwenCoder 2.5 32B",
433
- "Model Type": "Coding",
434
- "Benchmark": "NotSoTiny",
435
- "Task": "TT10 IHP 02",
436
- "Result": 13.33,
437
- "Model URL": "https://huggingface.co/Qwen/Qwen2.5-Coder-32B-Instruct",
438
- "Params": 32.5,
439
- "Release": "V1",
440
- "Thinking": "Dense"
441
- },
442
- {
443
- "Model": "QwenCoder 2.5 32B",
444
- "Model Type": "Coding",
445
- "Benchmark": "NotSoTiny",
446
- "Task": "TT10 IHP 25a",
447
- "Result": 15.43,
448
- "Model URL": "https://huggingface.co/Qwen/Qwen2.5-Coder-32B-Instruct",
449
- "Params": 32.5,
450
- "Release": "V1",
451
- "Thinking": "Dense"
452
- },
453
- {
454
- "Model": "QwenCoder 2.5 32B",
455
- "Model Type": "Coding",
456
- "Benchmark": "NotSoTiny",
457
- "Task": "TTSky25a",
458
- "Result": 12.78,
459
- "Model URL": "https://huggingface.co/Qwen/Qwen2.5-Coder-32B-Instruct",
460
- "Params": 32.5,
461
- "Release": "V1",
462
- "Thinking": "Dense"
463
- },
464
- {
465
- "Model": "Qwen2.5 14B 1M",
466
- "Model Type": "General",
467
- "Benchmark": "NotSoTiny",
468
- "Task": "TT06",
469
- "Result": 9.81,
470
- "Model URL": "https://huggingface.co/Qwen/Qwen2.5-14B-Instruct-1M",
471
- "Params": 14.8,
472
- "Release": "V4",
473
- "Thinking": "Dense"
474
- },
475
- {
476
- "Model": "Qwen2.5 14B 1M",
477
- "Model Type": "General",
478
- "Benchmark": "NotSoTiny",
479
- "Task": "TT07",
480
- "Result": 15.71,
481
- "Model URL": "https://huggingface.co/Qwen/Qwen2.5-14B-Instruct-1M",
482
- "Params": 14.8,
483
- "Release": "V4",
484
- "Thinking": "Dense"
485
- },
486
- {
487
- "Model": "Qwen2.5 14B 1M",
488
- "Model Type": "General",
489
- "Benchmark": "NotSoTiny",
490
- "Task": "TT08",
491
- "Result": 15.51,
492
- "Model URL": "https://huggingface.co/Qwen/Qwen2.5-14B-Instruct-1M",
493
- "Params": 14.8,
494
- "Release": "V4",
495
- "Thinking": "Dense"
496
- },
497
- {
498
- "Model": "Qwen2.5 14B 1M",
499
- "Model Type": "General",
500
- "Benchmark": "NotSoTiny",
501
- "Task": "TT09",
502
- "Result": 15.92,
503
- "Model URL": "https://huggingface.co/Qwen/Qwen2.5-14B-Instruct-1M",
504
- "Params": 14.8,
505
- "Release": "V4",
506
- "Thinking": "Dense"
507
- },
508
- {
509
- "Model": "Qwen2.5 14B 1M",
510
- "Model Type": "General",
511
- "Benchmark": "NotSoTiny",
512
- "Task": "TT10 IHP 02",
513
- "Result": 11.33,
514
- "Model URL": "https://huggingface.co/Qwen/Qwen2.5-14B-Instruct-1M",
515
- "Params": 14.8,
516
- "Release": "V4",
517
- "Thinking": "Dense"
518
- },
519
- {
520
- "Model": "Qwen2.5 14B 1M",
521
- "Model Type": "General",
522
- "Benchmark": "NotSoTiny",
523
- "Task": "TT10 IHP 25a",
524
- "Result": 12.07,
525
- "Model URL": "https://huggingface.co/Qwen/Qwen2.5-14B-Instruct-1M",
526
- "Params": 14.8,
527
- "Release": "V4",
528
- "Thinking": "Dense"
529
- },
530
- {
531
- "Model": "Qwen2.5 14B 1M",
532
- "Model Type": "General",
533
- "Benchmark": "NotSoTiny",
534
- "Task": "TTSky25a",
535
- "Result": 7.1,
536
- "Model URL": "https://huggingface.co/Qwen/Qwen2.5-14B-Instruct-1M",
537
- "Params": 14.8,
538
- "Release": "V4",
539
- "Thinking": "Dense"
540
- },
541
- {
542
- "Model": "Qwen2.5 14B",
543
- "Model Type": "General",
544
- "Benchmark": "NotSoTiny",
545
- "Task": "TT06",
546
- "Result": 5.56,
547
- "Model URL": "https://huggingface.co/Qwen/Qwen2.5-14B-Instruct",
548
- "Params": 14.8,
549
- "Release": "V4",
550
- "Thinking": "Dense"
551
- },
552
- {
553
- "Model": "Qwen2.5 14B",
554
- "Model Type": "General",
555
- "Benchmark": "NotSoTiny",
556
- "Task": "TT07",
557
- "Result": 12.88,
558
- "Model URL": "https://huggingface.co/Qwen/Qwen2.5-14B-Instruct",
559
- "Params": 14.8,
560
- "Release": "V4",
561
- "Thinking": "Dense"
562
- },
563
- {
564
- "Model": "Qwen2.5 14B",
565
- "Model Type": "General",
566
- "Benchmark": "NotSoTiny",
567
- "Task": "TT08",
568
- "Result": 4.69,
569
- "Model URL": "https://huggingface.co/Qwen/Qwen2.5-14B-Instruct",
570
- "Params": 14.8,
571
- "Release": "V4",
572
- "Thinking": "Dense"
573
- },
574
- {
575
- "Model": "Qwen2.5 14B",
576
- "Model Type": "General",
577
- "Benchmark": "NotSoTiny",
578
- "Task": "TT09",
579
- "Result": 15.04,
580
- "Model URL": "https://huggingface.co/Qwen/Qwen2.5-14B-Instruct",
581
- "Params": 14.8,
582
- "Release": "V4",
583
- "Thinking": "Dense"
584
- },
585
- {
586
- "Model": "Qwen2.5 14B",
587
- "Model Type": "General",
588
- "Benchmark": "NotSoTiny",
589
- "Task": "TT10 IHP 02",
590
- "Result": 8.0,
591
- "Model URL": "https://huggingface.co/Qwen/Qwen2.5-14B-Instruct",
592
- "Params": 14.8,
593
- "Release": "V4",
594
- "Thinking": "Dense"
595
- },
596
- {
597
- "Model": "Qwen2.5 14B",
598
- "Model Type": "General",
599
- "Benchmark": "NotSoTiny",
600
- "Task": "TT10 IHP 25a",
601
- "Result": 9.02,
602
- "Model URL": "https://huggingface.co/Qwen/Qwen2.5-14B-Instruct",
603
- "Params": 14.8,
604
- "Release": "V4",
605
- "Thinking": "Dense"
606
- },
607
- {
608
- "Model": "Qwen2.5 14B",
609
- "Model Type": "General",
610
- "Benchmark": "NotSoTiny",
611
- "Task": "TTSky25a",
612
- "Result": 7.57,
613
- "Model URL": "https://huggingface.co/Qwen/Qwen2.5-14B-Instruct",
614
- "Params": 14.8,
615
- "Release": "V4",
616
- "Thinking": "Dense"
617
- },
618
- {
619
- "Model": "Qwen2.5 7B",
620
- "Model Type": "General",
621
- "Benchmark": "NotSoTiny",
622
- "Task": "TT06",
623
- "Result": 0.74,
624
- "Model URL": "https://huggingface.co/Qwen/Qwen2.5-7B-Instruct",
625
- "Params": 7.61,
626
- "Release": "V4",
627
- "Thinking": "Dense"
628
- },
629
- {
630
- "Model": "Qwen2.5 7B",
631
- "Model Type": "General",
632
- "Benchmark": "NotSoTiny",
633
- "Task": "TT07",
634
- "Result": 6.21,
635
- "Model URL": "https://huggingface.co/Qwen/Qwen2.5-7B-Instruct",
636
- "Params": 7.61,
637
- "Release": "V4",
638
- "Thinking": "Dense"
639
- },
640
- {
641
- "Model": "Qwen2.5 7B",
642
- "Model Type": "General",
643
- "Benchmark": "NotSoTiny",
644
- "Task": "TT08",
645
- "Result": 2.86,
646
- "Model URL": "https://huggingface.co/Qwen/Qwen2.5-7B-Instruct",
647
- "Params": 7.61,
648
- "Release": "V4",
649
- "Thinking": "Dense"
650
- },
651
- {
652
- "Model": "Qwen2.5 7B",
653
- "Model Type": "General",
654
- "Benchmark": "NotSoTiny",
655
- "Task": "TT09",
656
- "Result": 3.84,
657
- "Model URL": "https://huggingface.co/Qwen/Qwen2.5-7B-Instruct",
658
- "Params": 7.61,
659
- "Release": "V4",
660
- "Thinking": "Dense"
661
- },
662
- {
663
- "Model": "Qwen2.5 7B",
664
- "Model Type": "General",
665
- "Benchmark": "NotSoTiny",
666
- "Task": "TT10 IHP 02",
667
- "Result": 7.33,
668
- "Model URL": "https://huggingface.co/Qwen/Qwen2.5-7B-Instruct",
669
- "Params": 7.61,
670
- "Release": "V4",
671
- "Thinking": "Dense"
672
- },
673
- {
674
- "Model": "Qwen2.5 7B",
675
- "Model Type": "General",
676
- "Benchmark": "NotSoTiny",
677
- "Task": "TT10 IHP 25a",
678
- "Result": 1.74,
679
- "Model URL": "https://huggingface.co/Qwen/Qwen2.5-7B-Instruct",
680
- "Params": 7.61,
681
- "Release": "V4",
682
- "Thinking": "Dense"
683
- },
684
- {
685
- "Model": "Qwen2.5 7B",
686
- "Model Type": "General",
687
- "Benchmark": "NotSoTiny",
688
- "Task": "TTSky25a",
689
- "Result": 1.66,
690
- "Model URL": "https://huggingface.co/Qwen/Qwen2.5-7B-Instruct",
691
- "Params": 7.61,
692
- "Release": "V4",
693
- "Thinking": "Dense"
694
- },
695
- {
696
- "Model": "HaVen-CodeQwen",
697
- "Model Type": "RTL-Specific",
698
- "Benchmark": "NotSoTiny",
699
- "Task": "TT06",
700
- "Result": 2.78,
701
- "Model URL": "https://huggingface.co/yangyiyao/HaVen-CodeQwen",
702
- "Params": 7.25,
703
- "Release": "V1",
704
- "Thinking": "Dense"
705
- },
706
- {
707
- "Model": "HaVen-CodeQwen",
708
- "Model Type": "RTL-Specific",
709
- "Benchmark": "NotSoTiny",
710
- "Task": "TT07",
711
- "Result": 3.39,
712
- "Model URL": "https://huggingface.co/yangyiyao/HaVen-CodeQwen",
713
- "Params": 7.25,
714
- "Release": "V1",
715
- "Thinking": "Dense"
716
- },
717
- {
718
- "Model": "HaVen-CodeQwen",
719
- "Model Type": "RTL-Specific",
720
- "Benchmark": "NotSoTiny",
721
- "Task": "TT08",
722
- "Result": 1.73,
723
- "Model URL": "https://huggingface.co/yangyiyao/HaVen-CodeQwen",
724
- "Params": 7.25,
725
- "Release": "V1",
726
- "Thinking": "Dense"
727
- },
728
- {
729
- "Model": "HaVen-CodeQwen",
730
- "Model Type": "RTL-Specific",
731
- "Benchmark": "NotSoTiny",
732
- "Task": "TT09",
733
- "Result": 7.2,
734
- "Model URL": "https://huggingface.co/yangyiyao/HaVen-CodeQwen",
735
- "Params": 7.25,
736
- "Release": "V1",
737
- "Thinking": "Dense"
738
- },
739
- {
740
- "Model": "HaVen-CodeQwen",
741
- "Model Type": "RTL-Specific",
742
- "Benchmark": "NotSoTiny",
743
- "Task": "TT10 IHP 02",
744
- "Result": 10.67,
745
- "Model URL": "https://huggingface.co/yangyiyao/HaVen-CodeQwen",
746
- "Params": 7.25,
747
- "Release": "V1",
748
- "Thinking": "Dense"
749
- },
750
- {
751
- "Model": "HaVen-CodeQwen",
752
- "Model Type": "RTL-Specific",
753
- "Benchmark": "NotSoTiny",
754
- "Task": "TT10 IHP 25a",
755
- "Result": 0.43,
756
- "Model URL": "https://huggingface.co/yangyiyao/HaVen-CodeQwen",
757
- "Params": 7.25,
758
- "Release": "V1",
759
- "Thinking": "Dense"
760
- },
761
- {
762
- "Model": "HaVen-CodeQwen",
763
- "Model Type": "RTL-Specific",
764
- "Benchmark": "NotSoTiny",
765
- "Task": "TTSky25a",
766
- "Result": 3.2,
767
- "Model URL": "https://huggingface.co/yangyiyao/HaVen-CodeQwen",
768
- "Params": 7.25,
769
- "Release": "V1",
770
- "Thinking": "Dense"
771
- },
772
- {
773
- "Model": "OriGen",
774
- "Model Type": "RTL-Specific",
775
- "Benchmark": "NotSoTiny",
776
- "Task": "TT06",
777
- "Result": 4.07,
778
- "Model URL": "https://huggingface.co/henryen/OriGen",
779
- "Params": 6.74,
780
- "Release": "V1",
781
- "Thinking": "Dense"
782
- },
783
- {
784
- "Model": "OriGen",
785
- "Model Type": "RTL-Specific",
786
- "Benchmark": "NotSoTiny",
787
- "Task": "TT07",
788
- "Result": 2.71,
789
- "Model URL": "https://huggingface.co/henryen/OriGen",
790
- "Params": 6.74,
791
- "Release": "V1",
792
- "Thinking": "Dense"
793
- },
794
- {
795
- "Model": "OriGen",
796
- "Model Type": "RTL-Specific",
797
- "Benchmark": "NotSoTiny",
798
- "Task": "TT08",
799
- "Result": 1.02,
800
- "Model URL": "https://huggingface.co/henryen/OriGen",
801
- "Params": 6.74,
802
- "Release": "V1",
803
- "Thinking": "Dense"
804
- },
805
- {
806
- "Model": "OriGen",
807
- "Model Type": "RTL-Specific",
808
- "Benchmark": "NotSoTiny",
809
- "Task": "TT09",
810
- "Result": 5.84,
811
- "Model URL": "https://huggingface.co/henryen/OriGen",
812
- "Params": 6.74,
813
- "Release": "V1",
814
- "Thinking": "Dense"
815
- },
816
- {
817
- "Model": "OriGen",
818
- "Model Type": "RTL-Specific",
819
- "Benchmark": "NotSoTiny",
820
- "Task": "TT10 IHP 02",
821
- "Result": 7.33,
822
- "Model URL": "https://huggingface.co/henryen/OriGen",
823
- "Params": 6.74,
824
- "Release": "V1",
825
- "Thinking": "Dense"
826
- },
827
- {
828
- "Model": "OriGen",
829
- "Model Type": "RTL-Specific",
830
- "Benchmark": "NotSoTiny",
831
- "Task": "TT10 IHP 25a",
832
- "Result": 2.17,
833
- "Model URL": "https://huggingface.co/henryen/OriGen",
834
- "Params": 6.74,
835
- "Release": "V1",
836
- "Thinking": "Dense"
837
- },
838
- {
839
- "Model": "OriGen",
840
- "Model Type": "RTL-Specific",
841
- "Benchmark": "NotSoTiny",
842
- "Task": "TTSky25a",
843
- "Result": 0.0,
844
- "Model URL": "https://huggingface.co/henryen/OriGen",
845
- "Params": 6.74,
846
- "Release": "V1",
847
- "Thinking": "Dense"
848
- }
849
- ]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
results/results_NotSoTiny-25-12.json CHANGED
@@ -7,6 +7,7 @@
7
  "Result": 12.96,
8
  "Model URL": "https://huggingface.co/moonshotai/Kimi-K2-Instruct-0905",
9
  "Params": 1000,
 
10
  "Release": "V4",
11
  "Thinking": "Dense"
12
  },
@@ -18,6 +19,7 @@
18
  "Result": 15.59,
19
  "Model URL": "https://huggingface.co/moonshotai/Kimi-K2-Instruct-0905",
20
  "Params": 1000,
 
21
  "Release": "V4",
22
  "Thinking": "Dense"
23
  },
@@ -29,6 +31,7 @@
29
  "Result": 20.92,
30
  "Model URL": "https://huggingface.co/moonshotai/Kimi-K2-Instruct-0905",
31
  "Params": 1000,
 
32
  "Release": "V4",
33
  "Thinking": "Dense"
34
  },
@@ -40,6 +43,7 @@
40
  "Result": 21.84,
41
  "Model URL": "https://huggingface.co/moonshotai/Kimi-K2-Instruct-0905",
42
  "Params": 1000,
 
43
  "Release": "V4",
44
  "Thinking": "Dense"
45
  },
@@ -51,6 +55,7 @@
51
  "Result": 23.33,
52
  "Model URL": "https://huggingface.co/moonshotai/Kimi-K2-Instruct-0905",
53
  "Params": 1000,
 
54
  "Release": "V4",
55
  "Thinking": "Dense"
56
  },
@@ -62,6 +67,7 @@
62
  "Result": 19.57,
63
  "Model URL": "https://huggingface.co/moonshotai/Kimi-K2-Instruct-0905",
64
  "Params": 1000,
 
65
  "Release": "V4",
66
  "Thinking": "Dense"
67
  },
@@ -73,6 +79,7 @@
73
  "Result": 18.82,
74
  "Model URL": "https://huggingface.co/moonshotai/Kimi-K2-Instruct-0905",
75
  "Params": 1000,
 
76
  "Release": "V4",
77
  "Thinking": "Dense"
78
  },
@@ -84,6 +91,7 @@
84
  "Result": 14.63,
85
  "Model URL": "https://huggingface.co/deepseek-ai/DeepSeek-R1-0528",
86
  "Params": 685,
 
87
  "Release": "V2",
88
  "Thinking": "Reasoning"
89
  },
@@ -95,6 +103,7 @@
95
  "Result": 20.56,
96
  "Model URL": "https://huggingface.co/deepseek-ai/DeepSeek-R1-0528",
97
  "Params": 685,
 
98
  "Release": "V2",
99
  "Thinking": "Reasoning"
100
  },
@@ -106,6 +115,7 @@
106
  "Result": 19.69,
107
  "Model URL": "https://huggingface.co/deepseek-ai/DeepSeek-R1-0528",
108
  "Params": 685,
 
109
  "Release": "V2",
110
  "Thinking": "Reasoning"
111
  },
@@ -117,6 +127,7 @@
117
  "Result": 23.84,
118
  "Model URL": "https://huggingface.co/deepseek-ai/DeepSeek-R1-0528",
119
  "Params": 685,
 
120
  "Release": "V2",
121
  "Thinking": "Reasoning"
122
  },
@@ -128,6 +139,7 @@
128
  "Result": 24.67,
129
  "Model URL": "https://huggingface.co/deepseek-ai/DeepSeek-R1-0528",
130
  "Params": 685,
 
131
  "Release": "V2",
132
  "Thinking": "Reasoning"
133
  },
@@ -139,6 +151,7 @@
139
  "Result": 20.65,
140
  "Model URL": "https://huggingface.co/deepseek-ai/DeepSeek-R1-0528",
141
  "Params": 685,
 
142
  "Release": "V2",
143
  "Thinking": "Reasoning"
144
  },
@@ -150,6 +163,7 @@
150
  "Result": 21.07,
151
  "Model URL": "https://huggingface.co/deepseek-ai/DeepSeek-R1-0528",
152
  "Params": 685,
 
153
  "Release": "V2",
154
  "Thinking": "Reasoning"
155
  },
@@ -161,6 +175,7 @@
161
  "Result": 17.96,
162
  "Model URL": "https://huggingface.co/Qwen/Qwen3-Coder-480B-A35B-Instruct",
163
  "Params": 480,
 
164
  "Release": "V2",
165
  "Thinking": "Dense"
166
  },
@@ -172,6 +187,7 @@
172
  "Result": 28.36,
173
  "Model URL": "https://huggingface.co/Qwen/Qwen3-Coder-480B-A35B-Instruct",
174
  "Params": 480,
 
175
  "Release": "V2",
176
  "Thinking": "Dense"
177
  },
@@ -183,6 +199,7 @@
183
  "Result": 22.04,
184
  "Model URL": "https://huggingface.co/Qwen/Qwen3-Coder-480B-A35B-Instruct",
185
  "Params": 480,
 
186
  "Release": "V2",
187
  "Thinking": "Dense"
188
  },
@@ -194,6 +211,7 @@
194
  "Result": 28.32,
195
  "Model URL": "https://huggingface.co/Qwen/Qwen3-Coder-480B-A35B-Instruct",
196
  "Params": 480,
 
197
  "Release": "V2",
198
  "Thinking": "Dense"
199
  },
@@ -205,6 +223,7 @@
205
  "Result": 20.0,
206
  "Model URL": "https://huggingface.co/Qwen/Qwen3-Coder-480B-A35B-Instruct",
207
  "Params": 480,
 
208
  "Release": "V2",
209
  "Thinking": "Dense"
210
  },
@@ -216,6 +235,7 @@
216
  "Result": 28.15,
217
  "Model URL": "https://huggingface.co/Qwen/Qwen3-Coder-480B-A35B-Instruct",
218
  "Params": 480,
 
219
  "Release": "V2",
220
  "Thinking": "Dense"
221
  },
@@ -227,6 +247,7 @@
227
  "Result": 19.17,
228
  "Model URL": "https://huggingface.co/Qwen/Qwen3-Coder-480B-A35B-Instruct",
229
  "Params": 480,
 
230
  "Release": "V2",
231
  "Thinking": "Dense"
232
  },
@@ -238,6 +259,7 @@
238
  "Result": 17.41,
239
  "Model URL": "https://huggingface.co/openai/gpt-oss-120b",
240
  "Params": 120,
 
241
  "Release": "V3",
242
  "Thinking": "Reasoning"
243
  },
@@ -249,6 +271,7 @@
249
  "Result": 19.21,
250
  "Model URL": "https://huggingface.co/openai/gpt-oss-120b",
251
  "Params": 120,
 
252
  "Release": "V3",
253
  "Thinking": "Reasoning"
254
  },
@@ -260,6 +283,7 @@
260
  "Result": 19.8,
261
  "Model URL": "https://huggingface.co/openai/gpt-oss-120b",
262
  "Params": 120,
 
263
  "Release": "V3",
264
  "Thinking": "Reasoning"
265
  },
@@ -271,6 +295,7 @@
271
  "Result": 31.84,
272
  "Model URL": "https://huggingface.co/openai/gpt-oss-120b",
273
  "Params": 120,
 
274
  "Release": "V3",
275
  "Thinking": "Reasoning"
276
  },
@@ -282,6 +307,7 @@
282
  "Result": 23.33,
283
  "Model URL": "https://huggingface.co/openai/gpt-oss-120b",
284
  "Params": 120,
 
285
  "Release": "V3",
286
  "Thinking": "Reasoning"
287
  },
@@ -293,6 +319,7 @@
293
  "Result": 18.15,
294
  "Model URL": "https://huggingface.co/openai/gpt-oss-120b",
295
  "Params": 120,
 
296
  "Release": "V3",
297
  "Thinking": "Reasoning"
298
  },
@@ -304,6 +331,7 @@
304
  "Result": 16.57,
305
  "Model URL": "https://huggingface.co/openai/gpt-oss-120b",
306
  "Params": 120,
 
307
  "Release": "V3",
308
  "Thinking": "Reasoning"
309
  },
@@ -315,6 +343,7 @@
315
  "Result": 11.67,
316
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-72B-Instruct",
317
  "Params": 72.7,
 
318
  "Release": "V1",
319
  "Thinking": "Dense"
320
  },
@@ -326,6 +355,7 @@
326
  "Result": 12.77,
327
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-72B-Instruct",
328
  "Params": 72.7,
 
329
  "Release": "V1",
330
  "Thinking": "Dense"
331
  },
@@ -337,6 +367,7 @@
337
  "Result": 5.61,
338
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-72B-Instruct",
339
  "Params": 72.7,
 
340
  "Release": "V1",
341
  "Thinking": "Dense"
342
  },
@@ -348,6 +379,7 @@
348
  "Result": 22.4,
349
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-72B-Instruct",
350
  "Params": 72.7,
 
351
  "Release": "V1",
352
  "Thinking": "Dense"
353
  },
@@ -359,6 +391,7 @@
359
  "Result": 22.67,
360
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-72B-Instruct",
361
  "Params": 72.7,
 
362
  "Release": "V1",
363
  "Thinking": "Dense"
364
  },
@@ -370,6 +403,7 @@
370
  "Result": 15.11,
371
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-72B-Instruct",
372
  "Params": 72.7,
 
373
  "Release": "V1",
374
  "Thinking": "Dense"
375
  },
@@ -381,6 +415,7 @@
381
  "Result": 12.66,
382
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-72B-Instruct",
383
  "Params": 72.7,
 
384
  "Release": "V1",
385
  "Thinking": "Dense"
386
  },
@@ -392,6 +427,7 @@
392
  "Result": 7.78,
393
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-Coder-32B-Instruct",
394
  "Params": 32.5,
 
395
  "Release": "V1",
396
  "Thinking": "Dense"
397
  },
@@ -403,6 +439,7 @@
403
  "Result": 10.17,
404
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-Coder-32B-Instruct",
405
  "Params": 32.5,
 
406
  "Release": "V1",
407
  "Thinking": "Dense"
408
  },
@@ -414,6 +451,7 @@
414
  "Result": 5.92,
415
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-Coder-32B-Instruct",
416
  "Params": 32.5,
 
417
  "Release": "V1",
418
  "Thinking": "Dense"
419
  },
@@ -425,6 +463,7 @@
425
  "Result": 17.52,
426
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-Coder-32B-Instruct",
427
  "Params": 32.5,
 
428
  "Release": "V1",
429
  "Thinking": "Dense"
430
  },
@@ -436,6 +475,7 @@
436
  "Result": 13.33,
437
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-Coder-32B-Instruct",
438
  "Params": 32.5,
 
439
  "Release": "V1",
440
  "Thinking": "Dense"
441
  },
@@ -447,6 +487,7 @@
447
  "Result": 15.43,
448
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-Coder-32B-Instruct",
449
  "Params": 32.5,
 
450
  "Release": "V1",
451
  "Thinking": "Dense"
452
  },
@@ -458,6 +499,7 @@
458
  "Result": 12.78,
459
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-Coder-32B-Instruct",
460
  "Params": 32.5,
 
461
  "Release": "V1",
462
  "Thinking": "Dense"
463
  },
@@ -469,6 +511,7 @@
469
  "Result": 9.81,
470
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-14B-Instruct-1M",
471
  "Params": 14.8,
 
472
  "Release": "V4",
473
  "Thinking": "Dense"
474
  },
@@ -480,6 +523,7 @@
480
  "Result": 15.71,
481
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-14B-Instruct-1M",
482
  "Params": 14.8,
 
483
  "Release": "V4",
484
  "Thinking": "Dense"
485
  },
@@ -491,6 +535,7 @@
491
  "Result": 15.51,
492
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-14B-Instruct-1M",
493
  "Params": 14.8,
 
494
  "Release": "V4",
495
  "Thinking": "Dense"
496
  },
@@ -502,6 +547,7 @@
502
  "Result": 15.92,
503
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-14B-Instruct-1M",
504
  "Params": 14.8,
 
505
  "Release": "V4",
506
  "Thinking": "Dense"
507
  },
@@ -513,6 +559,7 @@
513
  "Result": 11.33,
514
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-14B-Instruct-1M",
515
  "Params": 14.8,
 
516
  "Release": "V4",
517
  "Thinking": "Dense"
518
  },
@@ -524,6 +571,7 @@
524
  "Result": 12.07,
525
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-14B-Instruct-1M",
526
  "Params": 14.8,
 
527
  "Release": "V4",
528
  "Thinking": "Dense"
529
  },
@@ -535,6 +583,7 @@
535
  "Result": 7.1,
536
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-14B-Instruct-1M",
537
  "Params": 14.8,
 
538
  "Release": "V4",
539
  "Thinking": "Dense"
540
  },
@@ -546,6 +595,7 @@
546
  "Result": 5.56,
547
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-14B-Instruct",
548
  "Params": 14.8,
 
549
  "Release": "V4",
550
  "Thinking": "Dense"
551
  },
@@ -557,6 +607,7 @@
557
  "Result": 12.88,
558
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-14B-Instruct",
559
  "Params": 14.8,
 
560
  "Release": "V4",
561
  "Thinking": "Dense"
562
  },
@@ -568,6 +619,7 @@
568
  "Result": 4.69,
569
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-14B-Instruct",
570
  "Params": 14.8,
 
571
  "Release": "V4",
572
  "Thinking": "Dense"
573
  },
@@ -579,6 +631,7 @@
579
  "Result": 15.04,
580
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-14B-Instruct",
581
  "Params": 14.8,
 
582
  "Release": "V4",
583
  "Thinking": "Dense"
584
  },
@@ -590,6 +643,7 @@
590
  "Result": 8.0,
591
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-14B-Instruct",
592
  "Params": 14.8,
 
593
  "Release": "V4",
594
  "Thinking": "Dense"
595
  },
@@ -601,6 +655,7 @@
601
  "Result": 9.02,
602
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-14B-Instruct",
603
  "Params": 14.8,
 
604
  "Release": "V4",
605
  "Thinking": "Dense"
606
  },
@@ -612,6 +667,7 @@
612
  "Result": 7.57,
613
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-14B-Instruct",
614
  "Params": 14.8,
 
615
  "Release": "V4",
616
  "Thinking": "Dense"
617
  },
@@ -623,6 +679,7 @@
623
  "Result": 0.74,
624
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-7B-Instruct",
625
  "Params": 7.61,
 
626
  "Release": "V4",
627
  "Thinking": "Dense"
628
  },
@@ -634,6 +691,7 @@
634
  "Result": 6.21,
635
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-7B-Instruct",
636
  "Params": 7.61,
 
637
  "Release": "V4",
638
  "Thinking": "Dense"
639
  },
@@ -645,6 +703,7 @@
645
  "Result": 2.86,
646
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-7B-Instruct",
647
  "Params": 7.61,
 
648
  "Release": "V4",
649
  "Thinking": "Dense"
650
  },
@@ -656,6 +715,7 @@
656
  "Result": 3.84,
657
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-7B-Instruct",
658
  "Params": 7.61,
 
659
  "Release": "V4",
660
  "Thinking": "Dense"
661
  },
@@ -667,6 +727,7 @@
667
  "Result": 7.33,
668
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-7B-Instruct",
669
  "Params": 7.61,
 
670
  "Release": "V4",
671
  "Thinking": "Dense"
672
  },
@@ -678,6 +739,7 @@
678
  "Result": 1.74,
679
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-7B-Instruct",
680
  "Params": 7.61,
 
681
  "Release": "V4",
682
  "Thinking": "Dense"
683
  },
@@ -689,6 +751,7 @@
689
  "Result": 1.66,
690
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-7B-Instruct",
691
  "Params": 7.61,
 
692
  "Release": "V4",
693
  "Thinking": "Dense"
694
  },
@@ -700,6 +763,7 @@
700
  "Result": 2.78,
701
  "Model URL": "https://huggingface.co/yangyiyao/HaVen-CodeQwen",
702
  "Params": 7.25,
 
703
  "Release": "V1",
704
  "Thinking": "Dense"
705
  },
@@ -711,6 +775,7 @@
711
  "Result": 3.39,
712
  "Model URL": "https://huggingface.co/yangyiyao/HaVen-CodeQwen",
713
  "Params": 7.25,
 
714
  "Release": "V1",
715
  "Thinking": "Dense"
716
  },
@@ -722,6 +787,7 @@
722
  "Result": 1.73,
723
  "Model URL": "https://huggingface.co/yangyiyao/HaVen-CodeQwen",
724
  "Params": 7.25,
 
725
  "Release": "V1",
726
  "Thinking": "Dense"
727
  },
@@ -733,6 +799,7 @@
733
  "Result": 7.2,
734
  "Model URL": "https://huggingface.co/yangyiyao/HaVen-CodeQwen",
735
  "Params": 7.25,
 
736
  "Release": "V1",
737
  "Thinking": "Dense"
738
  },
@@ -744,6 +811,7 @@
744
  "Result": 10.67,
745
  "Model URL": "https://huggingface.co/yangyiyao/HaVen-CodeQwen",
746
  "Params": 7.25,
 
747
  "Release": "V1",
748
  "Thinking": "Dense"
749
  },
@@ -755,6 +823,7 @@
755
  "Result": 0.43,
756
  "Model URL": "https://huggingface.co/yangyiyao/HaVen-CodeQwen",
757
  "Params": 7.25,
 
758
  "Release": "V1",
759
  "Thinking": "Dense"
760
  },
@@ -766,6 +835,7 @@
766
  "Result": 3.2,
767
  "Model URL": "https://huggingface.co/yangyiyao/HaVen-CodeQwen",
768
  "Params": 7.25,
 
769
  "Release": "V1",
770
  "Thinking": "Dense"
771
  },
@@ -777,6 +847,7 @@
777
  "Result": 4.07,
778
  "Model URL": "https://huggingface.co/henryen/OriGen",
779
  "Params": 6.74,
 
780
  "Release": "V1",
781
  "Thinking": "Dense"
782
  },
@@ -788,6 +859,7 @@
788
  "Result": 2.71,
789
  "Model URL": "https://huggingface.co/henryen/OriGen",
790
  "Params": 6.74,
 
791
  "Release": "V1",
792
  "Thinking": "Dense"
793
  },
@@ -799,6 +871,7 @@
799
  "Result": 1.02,
800
  "Model URL": "https://huggingface.co/henryen/OriGen",
801
  "Params": 6.74,
 
802
  "Release": "V1",
803
  "Thinking": "Dense"
804
  },
@@ -810,6 +883,7 @@
810
  "Result": 5.84,
811
  "Model URL": "https://huggingface.co/henryen/OriGen",
812
  "Params": 6.74,
 
813
  "Release": "V1",
814
  "Thinking": "Dense"
815
  },
@@ -821,6 +895,7 @@
821
  "Result": 7.33,
822
  "Model URL": "https://huggingface.co/henryen/OriGen",
823
  "Params": 6.74,
 
824
  "Release": "V1",
825
  "Thinking": "Dense"
826
  },
@@ -832,6 +907,7 @@
832
  "Result": 2.17,
833
  "Model URL": "https://huggingface.co/henryen/OriGen",
834
  "Params": 6.74,
 
835
  "Release": "V1",
836
  "Thinking": "Dense"
837
  },
@@ -843,6 +919,7 @@
843
  "Result": 0.0,
844
  "Model URL": "https://huggingface.co/henryen/OriGen",
845
  "Params": 6.74,
 
846
  "Release": "V1",
847
  "Thinking": "Dense"
848
  }
 
7
  "Result": 12.96,
8
  "Model URL": "https://huggingface.co/moonshotai/Kimi-K2-Instruct-0905",
9
  "Params": 1000,
10
+ "Context Length": 262144,
11
  "Release": "V4",
12
  "Thinking": "Dense"
13
  },
 
19
  "Result": 15.59,
20
  "Model URL": "https://huggingface.co/moonshotai/Kimi-K2-Instruct-0905",
21
  "Params": 1000,
22
+ "Context Length": 262144,
23
  "Release": "V4",
24
  "Thinking": "Dense"
25
  },
 
31
  "Result": 20.92,
32
  "Model URL": "https://huggingface.co/moonshotai/Kimi-K2-Instruct-0905",
33
  "Params": 1000,
34
+ "Context Length": 262144,
35
  "Release": "V4",
36
  "Thinking": "Dense"
37
  },
 
43
  "Result": 21.84,
44
  "Model URL": "https://huggingface.co/moonshotai/Kimi-K2-Instruct-0905",
45
  "Params": 1000,
46
+ "Context Length": 262144,
47
  "Release": "V4",
48
  "Thinking": "Dense"
49
  },
 
55
  "Result": 23.33,
56
  "Model URL": "https://huggingface.co/moonshotai/Kimi-K2-Instruct-0905",
57
  "Params": 1000,
58
+ "Context Length": 262144,
59
  "Release": "V4",
60
  "Thinking": "Dense"
61
  },
 
67
  "Result": 19.57,
68
  "Model URL": "https://huggingface.co/moonshotai/Kimi-K2-Instruct-0905",
69
  "Params": 1000,
70
+ "Context Length": 262144,
71
  "Release": "V4",
72
  "Thinking": "Dense"
73
  },
 
79
  "Result": 18.82,
80
  "Model URL": "https://huggingface.co/moonshotai/Kimi-K2-Instruct-0905",
81
  "Params": 1000,
82
+ "Context Length": 262144,
83
  "Release": "V4",
84
  "Thinking": "Dense"
85
  },
 
91
  "Result": 14.63,
92
  "Model URL": "https://huggingface.co/deepseek-ai/DeepSeek-R1-0528",
93
  "Params": 685,
94
+ "Context Length": 163840,
95
  "Release": "V2",
96
  "Thinking": "Reasoning"
97
  },
 
103
  "Result": 20.56,
104
  "Model URL": "https://huggingface.co/deepseek-ai/DeepSeek-R1-0528",
105
  "Params": 685,
106
+ "Context Length": 163840,
107
  "Release": "V2",
108
  "Thinking": "Reasoning"
109
  },
 
115
  "Result": 19.69,
116
  "Model URL": "https://huggingface.co/deepseek-ai/DeepSeek-R1-0528",
117
  "Params": 685,
118
+ "Context Length": 163840,
119
  "Release": "V2",
120
  "Thinking": "Reasoning"
121
  },
 
127
  "Result": 23.84,
128
  "Model URL": "https://huggingface.co/deepseek-ai/DeepSeek-R1-0528",
129
  "Params": 685,
130
+ "Context Length": 163840,
131
  "Release": "V2",
132
  "Thinking": "Reasoning"
133
  },
 
139
  "Result": 24.67,
140
  "Model URL": "https://huggingface.co/deepseek-ai/DeepSeek-R1-0528",
141
  "Params": 685,
142
+ "Context Length": 163840,
143
  "Release": "V2",
144
  "Thinking": "Reasoning"
145
  },
 
151
  "Result": 20.65,
152
  "Model URL": "https://huggingface.co/deepseek-ai/DeepSeek-R1-0528",
153
  "Params": 685,
154
+ "Context Length": 163840,
155
  "Release": "V2",
156
  "Thinking": "Reasoning"
157
  },
 
163
  "Result": 21.07,
164
  "Model URL": "https://huggingface.co/deepseek-ai/DeepSeek-R1-0528",
165
  "Params": 685,
166
+ "Context Length": 163840,
167
  "Release": "V2",
168
  "Thinking": "Reasoning"
169
  },
 
175
  "Result": 17.96,
176
  "Model URL": "https://huggingface.co/Qwen/Qwen3-Coder-480B-A35B-Instruct",
177
  "Params": 480,
178
+ "Context Length": 262144,
179
  "Release": "V2",
180
  "Thinking": "Dense"
181
  },
 
187
  "Result": 28.36,
188
  "Model URL": "https://huggingface.co/Qwen/Qwen3-Coder-480B-A35B-Instruct",
189
  "Params": 480,
190
+ "Context Length": 262144,
191
  "Release": "V2",
192
  "Thinking": "Dense"
193
  },
 
199
  "Result": 22.04,
200
  "Model URL": "https://huggingface.co/Qwen/Qwen3-Coder-480B-A35B-Instruct",
201
  "Params": 480,
202
+ "Context Length": 262144,
203
  "Release": "V2",
204
  "Thinking": "Dense"
205
  },
 
211
  "Result": 28.32,
212
  "Model URL": "https://huggingface.co/Qwen/Qwen3-Coder-480B-A35B-Instruct",
213
  "Params": 480,
214
+ "Context Length": 262144,
215
  "Release": "V2",
216
  "Thinking": "Dense"
217
  },
 
223
  "Result": 20.0,
224
  "Model URL": "https://huggingface.co/Qwen/Qwen3-Coder-480B-A35B-Instruct",
225
  "Params": 480,
226
+ "Context Length": 262144,
227
  "Release": "V2",
228
  "Thinking": "Dense"
229
  },
 
235
  "Result": 28.15,
236
  "Model URL": "https://huggingface.co/Qwen/Qwen3-Coder-480B-A35B-Instruct",
237
  "Params": 480,
238
+ "Context Length": 262144,
239
  "Release": "V2",
240
  "Thinking": "Dense"
241
  },
 
247
  "Result": 19.17,
248
  "Model URL": "https://huggingface.co/Qwen/Qwen3-Coder-480B-A35B-Instruct",
249
  "Params": 480,
250
+ "Context Length": 262144,
251
  "Release": "V2",
252
  "Thinking": "Dense"
253
  },
 
259
  "Result": 17.41,
260
  "Model URL": "https://huggingface.co/openai/gpt-oss-120b",
261
  "Params": 120,
262
+ "Context Length": 131072,
263
  "Release": "V3",
264
  "Thinking": "Reasoning"
265
  },
 
271
  "Result": 19.21,
272
  "Model URL": "https://huggingface.co/openai/gpt-oss-120b",
273
  "Params": 120,
274
+ "Context Length": 131072,
275
  "Release": "V3",
276
  "Thinking": "Reasoning"
277
  },
 
283
  "Result": 19.8,
284
  "Model URL": "https://huggingface.co/openai/gpt-oss-120b",
285
  "Params": 120,
286
+ "Context Length": 131072,
287
  "Release": "V3",
288
  "Thinking": "Reasoning"
289
  },
 
295
  "Result": 31.84,
296
  "Model URL": "https://huggingface.co/openai/gpt-oss-120b",
297
  "Params": 120,
298
+ "Context Length": 131072,
299
  "Release": "V3",
300
  "Thinking": "Reasoning"
301
  },
 
307
  "Result": 23.33,
308
  "Model URL": "https://huggingface.co/openai/gpt-oss-120b",
309
  "Params": 120,
310
+ "Context Length": 131072,
311
  "Release": "V3",
312
  "Thinking": "Reasoning"
313
  },
 
319
  "Result": 18.15,
320
  "Model URL": "https://huggingface.co/openai/gpt-oss-120b",
321
  "Params": 120,
322
+ "Context Length": 131072,
323
  "Release": "V3",
324
  "Thinking": "Reasoning"
325
  },
 
331
  "Result": 16.57,
332
  "Model URL": "https://huggingface.co/openai/gpt-oss-120b",
333
  "Params": 120,
334
+ "Context Length": 131072,
335
  "Release": "V3",
336
  "Thinking": "Reasoning"
337
  },
 
343
  "Result": 11.67,
344
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-72B-Instruct",
345
  "Params": 72.7,
346
+ "Context Length": 32768,
347
  "Release": "V1",
348
  "Thinking": "Dense"
349
  },
 
355
  "Result": 12.77,
356
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-72B-Instruct",
357
  "Params": 72.7,
358
+ "Context Length": 32768,
359
  "Release": "V1",
360
  "Thinking": "Dense"
361
  },
 
367
  "Result": 5.61,
368
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-72B-Instruct",
369
  "Params": 72.7,
370
+ "Context Length": 32768,
371
  "Release": "V1",
372
  "Thinking": "Dense"
373
  },
 
379
  "Result": 22.4,
380
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-72B-Instruct",
381
  "Params": 72.7,
382
+ "Context Length": 32768,
383
  "Release": "V1",
384
  "Thinking": "Dense"
385
  },
 
391
  "Result": 22.67,
392
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-72B-Instruct",
393
  "Params": 72.7,
394
+ "Context Length": 32768,
395
  "Release": "V1",
396
  "Thinking": "Dense"
397
  },
 
403
  "Result": 15.11,
404
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-72B-Instruct",
405
  "Params": 72.7,
406
+ "Context Length": 32768,
407
  "Release": "V1",
408
  "Thinking": "Dense"
409
  },
 
415
  "Result": 12.66,
416
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-72B-Instruct",
417
  "Params": 72.7,
418
+ "Context Length": 32768,
419
  "Release": "V1",
420
  "Thinking": "Dense"
421
  },
 
427
  "Result": 7.78,
428
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-Coder-32B-Instruct",
429
  "Params": 32.5,
430
+ "Context Length": 32768,
431
  "Release": "V1",
432
  "Thinking": "Dense"
433
  },
 
439
  "Result": 10.17,
440
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-Coder-32B-Instruct",
441
  "Params": 32.5,
442
+ "Context Length": 32768,
443
  "Release": "V1",
444
  "Thinking": "Dense"
445
  },
 
451
  "Result": 5.92,
452
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-Coder-32B-Instruct",
453
  "Params": 32.5,
454
+ "Context Length": 32768,
455
  "Release": "V1",
456
  "Thinking": "Dense"
457
  },
 
463
  "Result": 17.52,
464
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-Coder-32B-Instruct",
465
  "Params": 32.5,
466
+ "Context Length": 32768,
467
  "Release": "V1",
468
  "Thinking": "Dense"
469
  },
 
475
  "Result": 13.33,
476
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-Coder-32B-Instruct",
477
  "Params": 32.5,
478
+ "Context Length": 32768,
479
  "Release": "V1",
480
  "Thinking": "Dense"
481
  },
 
487
  "Result": 15.43,
488
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-Coder-32B-Instruct",
489
  "Params": 32.5,
490
+ "Context Length": 32768,
491
  "Release": "V1",
492
  "Thinking": "Dense"
493
  },
 
499
  "Result": 12.78,
500
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-Coder-32B-Instruct",
501
  "Params": 32.5,
502
+ "Context Length": 32768,
503
  "Release": "V1",
504
  "Thinking": "Dense"
505
  },
 
511
  "Result": 9.81,
512
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-14B-Instruct-1M",
513
  "Params": 14.8,
514
+ "Context Length": 1010000,
515
  "Release": "V4",
516
  "Thinking": "Dense"
517
  },
 
523
  "Result": 15.71,
524
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-14B-Instruct-1M",
525
  "Params": 14.8,
526
+ "Context Length": 1010000,
527
  "Release": "V4",
528
  "Thinking": "Dense"
529
  },
 
535
  "Result": 15.51,
536
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-14B-Instruct-1M",
537
  "Params": 14.8,
538
+ "Context Length": 1010000,
539
  "Release": "V4",
540
  "Thinking": "Dense"
541
  },
 
547
  "Result": 15.92,
548
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-14B-Instruct-1M",
549
  "Params": 14.8,
550
+ "Context Length": 1010000,
551
  "Release": "V4",
552
  "Thinking": "Dense"
553
  },
 
559
  "Result": 11.33,
560
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-14B-Instruct-1M",
561
  "Params": 14.8,
562
+ "Context Length": 1010000,
563
  "Release": "V4",
564
  "Thinking": "Dense"
565
  },
 
571
  "Result": 12.07,
572
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-14B-Instruct-1M",
573
  "Params": 14.8,
574
+ "Context Length": 1010000,
575
  "Release": "V4",
576
  "Thinking": "Dense"
577
  },
 
583
  "Result": 7.1,
584
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-14B-Instruct-1M",
585
  "Params": 14.8,
586
+ "Context Length": 1010000,
587
  "Release": "V4",
588
  "Thinking": "Dense"
589
  },
 
595
  "Result": 5.56,
596
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-14B-Instruct",
597
  "Params": 14.8,
598
+ "Context Length": 32768,
599
  "Release": "V4",
600
  "Thinking": "Dense"
601
  },
 
607
  "Result": 12.88,
608
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-14B-Instruct",
609
  "Params": 14.8,
610
+ "Context Length": 32768,
611
  "Release": "V4",
612
  "Thinking": "Dense"
613
  },
 
619
  "Result": 4.69,
620
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-14B-Instruct",
621
  "Params": 14.8,
622
+ "Context Length": 32768,
623
  "Release": "V4",
624
  "Thinking": "Dense"
625
  },
 
631
  "Result": 15.04,
632
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-14B-Instruct",
633
  "Params": 14.8,
634
+ "Context Length": 32768,
635
  "Release": "V4",
636
  "Thinking": "Dense"
637
  },
 
643
  "Result": 8.0,
644
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-14B-Instruct",
645
  "Params": 14.8,
646
+ "Context Length": 32768,
647
  "Release": "V4",
648
  "Thinking": "Dense"
649
  },
 
655
  "Result": 9.02,
656
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-14B-Instruct",
657
  "Params": 14.8,
658
+ "Context Length": 32768,
659
  "Release": "V4",
660
  "Thinking": "Dense"
661
  },
 
667
  "Result": 7.57,
668
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-14B-Instruct",
669
  "Params": 14.8,
670
+ "Context Length": 32768,
671
  "Release": "V4",
672
  "Thinking": "Dense"
673
  },
 
679
  "Result": 0.74,
680
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-7B-Instruct",
681
  "Params": 7.61,
682
+ "Context Length": 32768,
683
  "Release": "V4",
684
  "Thinking": "Dense"
685
  },
 
691
  "Result": 6.21,
692
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-7B-Instruct",
693
  "Params": 7.61,
694
+ "Context Length": 32768,
695
  "Release": "V4",
696
  "Thinking": "Dense"
697
  },
 
703
  "Result": 2.86,
704
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-7B-Instruct",
705
  "Params": 7.61,
706
+ "Context Length": 32768,
707
  "Release": "V4",
708
  "Thinking": "Dense"
709
  },
 
715
  "Result": 3.84,
716
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-7B-Instruct",
717
  "Params": 7.61,
718
+ "Context Length": 32768,
719
  "Release": "V4",
720
  "Thinking": "Dense"
721
  },
 
727
  "Result": 7.33,
728
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-7B-Instruct",
729
  "Params": 7.61,
730
+ "Context Length": 32768,
731
  "Release": "V4",
732
  "Thinking": "Dense"
733
  },
 
739
  "Result": 1.74,
740
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-7B-Instruct",
741
  "Params": 7.61,
742
+ "Context Length": 32768,
743
  "Release": "V4",
744
  "Thinking": "Dense"
745
  },
 
751
  "Result": 1.66,
752
  "Model URL": "https://huggingface.co/Qwen/Qwen2.5-7B-Instruct",
753
  "Params": 7.61,
754
+ "Context Length": 32768,
755
  "Release": "V4",
756
  "Thinking": "Dense"
757
  },
 
763
  "Result": 2.78,
764
  "Model URL": "https://huggingface.co/yangyiyao/HaVen-CodeQwen",
765
  "Params": 7.25,
766
+ "Context Length": 65536,
767
  "Release": "V1",
768
  "Thinking": "Dense"
769
  },
 
775
  "Result": 3.39,
776
  "Model URL": "https://huggingface.co/yangyiyao/HaVen-CodeQwen",
777
  "Params": 7.25,
778
+ "Context Length": 65536,
779
  "Release": "V1",
780
  "Thinking": "Dense"
781
  },
 
787
  "Result": 1.73,
788
  "Model URL": "https://huggingface.co/yangyiyao/HaVen-CodeQwen",
789
  "Params": 7.25,
790
+ "Context Length": 65536,
791
  "Release": "V1",
792
  "Thinking": "Dense"
793
  },
 
799
  "Result": 7.2,
800
  "Model URL": "https://huggingface.co/yangyiyao/HaVen-CodeQwen",
801
  "Params": 7.25,
802
+ "Context Length": 65536,
803
  "Release": "V1",
804
  "Thinking": "Dense"
805
  },
 
811
  "Result": 10.67,
812
  "Model URL": "https://huggingface.co/yangyiyao/HaVen-CodeQwen",
813
  "Params": 7.25,
814
+ "Context Length": 65536,
815
  "Release": "V1",
816
  "Thinking": "Dense"
817
  },
 
823
  "Result": 0.43,
824
  "Model URL": "https://huggingface.co/yangyiyao/HaVen-CodeQwen",
825
  "Params": 7.25,
826
+ "Context Length": 65536,
827
  "Release": "V1",
828
  "Thinking": "Dense"
829
  },
 
835
  "Result": 3.2,
836
  "Model URL": "https://huggingface.co/yangyiyao/HaVen-CodeQwen",
837
  "Params": 7.25,
838
+ "Context Length": 65536,
839
  "Release": "V1",
840
  "Thinking": "Dense"
841
  },
 
847
  "Result": 4.07,
848
  "Model URL": "https://huggingface.co/henryen/OriGen",
849
  "Params": 6.74,
850
+ "Context Length": 4096,
851
  "Release": "V1",
852
  "Thinking": "Dense"
853
  },
 
859
  "Result": 2.71,
860
  "Model URL": "https://huggingface.co/henryen/OriGen",
861
  "Params": 6.74,
862
+ "Context Length": 4096,
863
  "Release": "V1",
864
  "Thinking": "Dense"
865
  },
 
871
  "Result": 1.02,
872
  "Model URL": "https://huggingface.co/henryen/OriGen",
873
  "Params": 6.74,
874
+ "Context Length": 4096,
875
  "Release": "V1",
876
  "Thinking": "Dense"
877
  },
 
883
  "Result": 5.84,
884
  "Model URL": "https://huggingface.co/henryen/OriGen",
885
  "Params": 6.74,
886
+ "Context Length": 4096,
887
  "Release": "V1",
888
  "Thinking": "Dense"
889
  },
 
895
  "Result": 7.33,
896
  "Model URL": "https://huggingface.co/henryen/OriGen",
897
  "Params": 6.74,
898
+ "Context Length": 4096,
899
  "Release": "V1",
900
  "Thinking": "Dense"
901
  },
 
907
  "Result": 2.17,
908
  "Model URL": "https://huggingface.co/henryen/OriGen",
909
  "Params": 6.74,
910
+ "Context Length": 4096,
911
  "Release": "V1",
912
  "Thinking": "Dense"
913
  },
 
919
  "Result": 0.0,
920
  "Model URL": "https://huggingface.co/henryen/OriGen",
921
  "Params": 6.74,
922
+ "Context Length": 4096,
923
  "Release": "V1",
924
  "Thinking": "Dense"
925
  }
utils.py CHANGED
@@ -90,7 +90,7 @@ def filter_NotSoTiny(subset: pd.DataFrame, name=str) -> pd.DataFrame:
90
  if subset.empty:
91
  return pd.DataFrame(columns=NOTSOTINY_COLUMN_ORDER)
92
 
93
- details = subset[["Model", "Model URL", "Model Type", "Params", "Release", "Thinking"]].drop_duplicates(
94
  "Model"
95
  )
96
 
 
90
  if subset.empty:
91
  return pd.DataFrame(columns=NOTSOTINY_COLUMN_ORDER)
92
 
93
+ details = subset[["Model", "Model URL", "Model Type", "Params", "Context Length", "Release", "Thinking"]].drop_duplicates(
94
  "Model"
95
  )
96
 
uv.lock CHANGED
@@ -712,6 +712,70 @@ wheels = [
712
  { url = "https://files.pythonhosted.org/packages/fa/de/02b54f42487e3d3c6efb3f89428677074ca7bf43aae402517bc7cca949f3/PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563", size = 156446, upload-time = "2024-08-06T20:33:04.33Z" },
713
  ]
714
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
715
  [[package]]
716
  name = "requests"
717
  version = "2.32.4"
@@ -777,6 +841,28 @@ wheels = [
777
  { url = "https://files.pythonhosted.org/packages/4d/c0/1108ad9f01567f66b3154063605b350b69c3c9366732e09e45f9fd0d1deb/safehttpx-0.1.6-py3-none-any.whl", hash = "sha256:407cff0b410b071623087c63dd2080c3b44dc076888d8c5823c00d1e58cb381c", size = 8692, upload-time = "2024-12-02T18:44:08.555Z" },
778
  ]
779
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
780
  [[package]]
781
  name = "semantic-version"
782
  version = "2.10.0"
@@ -825,6 +911,31 @@ wheels = [
825
  { url = "https://files.pythonhosted.org/packages/f7/1f/b876b1f83aef204198a42dc101613fefccb32258e5428b5f9259677864b4/starlette-0.47.2-py3-none-any.whl", hash = "sha256:c5847e96134e5c5371ee9fac6fdf1a67336d5815e09eb2a01fdb57a351ef915b", size = 72984, upload-time = "2025-07-20T17:31:56.738Z" },
826
  ]
827
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
828
  [[package]]
829
  name = "tomlkit"
830
  version = "0.13.3"
@@ -843,6 +954,7 @@ dependencies = [
843
  { name = "gradio-leaderboard" },
844
  { name = "pandas" },
845
  { name = "plotly" },
 
846
  ]
847
 
848
  [package.metadata]
@@ -851,6 +963,7 @@ requires-dist = [
851
  { name = "gradio-leaderboard", specifier = ">=0.0.13" },
852
  { name = "pandas", specifier = ">=2.2.3" },
853
  { name = "plotly", specifier = ">=6.0.1" },
 
854
  ]
855
 
856
  [[package]]
@@ -865,6 +978,27 @@ wheels = [
865
  { url = "https://files.pythonhosted.org/packages/d0/30/dc54f88dd4a2b5dc8a0279bdd7270e735851848b762aeb1c1184ed1f6b14/tqdm-4.67.1-py3-none-any.whl", hash = "sha256:26445eca388f82e72884e0d580d5464cd801a3ea01e63e5601bdff9ba6a48de2", size = 78540, upload-time = "2024-11-24T20:12:19.698Z" },
866
  ]
867
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
868
  [[package]]
869
  name = "typer"
870
  version = "0.16.0"
 
712
  { url = "https://files.pythonhosted.org/packages/fa/de/02b54f42487e3d3c6efb3f89428677074ca7bf43aae402517bc7cca949f3/PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563", size = 156446, upload-time = "2024-08-06T20:33:04.33Z" },
713
  ]
714
 
715
+ [[package]]
716
+ name = "regex"
717
+ version = "2025.11.3"
718
+ source = { registry = "https://pypi.org/simple" }
719
+ sdist = { url = "https://files.pythonhosted.org/packages/cc/a9/546676f25e573a4cf00fe8e119b78a37b6a8fe2dc95cda877b30889c9c45/regex-2025.11.3.tar.gz", hash = "sha256:1fedc720f9bb2494ce31a58a1631f9c82df6a09b49c19517ea5cc280b4541e01", size = 414669, upload-time = "2025-11-03T21:34:22.089Z" }
720
+ wheels = [
721
+ { url = "https://files.pythonhosted.org/packages/e1/a7/dda24ebd49da46a197436ad96378f17df30ceb40e52e859fc42cac45b850/regex-2025.11.3-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:c1e448051717a334891f2b9a620fe36776ebf3dd8ec46a0b877c8ae69575feb4", size = 489081, upload-time = "2025-11-03T21:31:55.9Z" },
722
+ { url = "https://files.pythonhosted.org/packages/19/22/af2dc751aacf88089836aa088a1a11c4f21a04707eb1b0478e8e8fb32847/regex-2025.11.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:9b5aca4d5dfd7fbfbfbdaf44850fcc7709a01146a797536a8f84952e940cca76", size = 291123, upload-time = "2025-11-03T21:31:57.758Z" },
723
+ { url = "https://files.pythonhosted.org/packages/a3/88/1a3ea5672f4b0a84802ee9891b86743438e7c04eb0b8f8c4e16a42375327/regex-2025.11.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:04d2765516395cf7dda331a244a3282c0f5ae96075f728629287dfa6f76ba70a", size = 288814, upload-time = "2025-11-03T21:32:01.12Z" },
724
+ { url = "https://files.pythonhosted.org/packages/fb/8c/f5987895bf42b8ddeea1b315c9fedcfe07cadee28b9c98cf50d00adcb14d/regex-2025.11.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5d9903ca42bfeec4cebedba8022a7c97ad2aab22e09573ce9976ba01b65e4361", size = 798592, upload-time = "2025-11-03T21:32:03.006Z" },
725
+ { url = "https://files.pythonhosted.org/packages/99/2a/6591ebeede78203fa77ee46a1c36649e02df9eaa77a033d1ccdf2fcd5d4e/regex-2025.11.3-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:639431bdc89d6429f6721625e8129413980ccd62e9d3f496be618a41d205f160", size = 864122, upload-time = "2025-11-03T21:32:04.553Z" },
726
+ { url = "https://files.pythonhosted.org/packages/94/d6/be32a87cf28cf8ed064ff281cfbd49aefd90242a83e4b08b5a86b38e8eb4/regex-2025.11.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:f117efad42068f9715677c8523ed2be1518116d1c49b1dd17987716695181efe", size = 912272, upload-time = "2025-11-03T21:32:06.148Z" },
727
+ { url = "https://files.pythonhosted.org/packages/62/11/9bcef2d1445665b180ac7f230406ad80671f0fc2a6ffb93493b5dd8cd64c/regex-2025.11.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4aecb6f461316adf9f1f0f6a4a1a3d79e045f9b71ec76055a791affa3b285850", size = 803497, upload-time = "2025-11-03T21:32:08.162Z" },
728
+ { url = "https://files.pythonhosted.org/packages/e5/a7/da0dc273d57f560399aa16d8a68ae7f9b57679476fc7ace46501d455fe84/regex-2025.11.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3b3a5f320136873cc5561098dfab677eea139521cb9a9e8db98b7e64aef44cbc", size = 787892, upload-time = "2025-11-03T21:32:09.769Z" },
729
+ { url = "https://files.pythonhosted.org/packages/da/4b/732a0c5a9736a0b8d6d720d4945a2f1e6f38f87f48f3173559f53e8d5d82/regex-2025.11.3-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:75fa6f0056e7efb1f42a1c34e58be24072cb9e61a601340cc1196ae92326a4f9", size = 858462, upload-time = "2025-11-03T21:32:11.769Z" },
730
+ { url = "https://files.pythonhosted.org/packages/0c/f5/a2a03df27dc4c2d0c769220f5110ba8c4084b0bfa9ab0f9b4fcfa3d2b0fc/regex-2025.11.3-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:dbe6095001465294f13f1adcd3311e50dd84e5a71525f20a10bd16689c61ce0b", size = 850528, upload-time = "2025-11-03T21:32:13.906Z" },
731
+ { url = "https://files.pythonhosted.org/packages/d6/09/e1cd5bee3841c7f6eb37d95ca91cdee7100b8f88b81e41c2ef426910891a/regex-2025.11.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:454d9b4ae7881afbc25015b8627c16d88a597479b9dea82b8c6e7e2e07240dc7", size = 789866, upload-time = "2025-11-03T21:32:15.748Z" },
732
+ { url = "https://files.pythonhosted.org/packages/eb/51/702f5ea74e2a9c13d855a6a85b7f80c30f9e72a95493260193c07f3f8d74/regex-2025.11.3-cp313-cp313-win32.whl", hash = "sha256:28ba4d69171fc6e9896337d4fc63a43660002b7da53fc15ac992abcf3410917c", size = 266189, upload-time = "2025-11-03T21:32:17.493Z" },
733
+ { url = "https://files.pythonhosted.org/packages/8b/00/6e29bb314e271a743170e53649db0fdb8e8ff0b64b4f425f5602f4eb9014/regex-2025.11.3-cp313-cp313-win_amd64.whl", hash = "sha256:bac4200befe50c670c405dc33af26dad5a3b6b255dd6c000d92fe4629f9ed6a5", size = 277054, upload-time = "2025-11-03T21:32:19.042Z" },
734
+ { url = "https://files.pythonhosted.org/packages/25/f1/b156ff9f2ec9ac441710764dda95e4edaf5f36aca48246d1eea3f1fd96ec/regex-2025.11.3-cp313-cp313-win_arm64.whl", hash = "sha256:2292cd5a90dab247f9abe892ac584cb24f0f54680c73fcb4a7493c66c2bf2467", size = 270325, upload-time = "2025-11-03T21:32:21.338Z" },
735
+ { url = "https://files.pythonhosted.org/packages/20/28/fd0c63357caefe5680b8ea052131acbd7f456893b69cc2a90cc3e0dc90d4/regex-2025.11.3-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:1eb1ebf6822b756c723e09f5186473d93236c06c579d2cc0671a722d2ab14281", size = 491984, upload-time = "2025-11-03T21:32:23.466Z" },
736
+ { url = "https://files.pythonhosted.org/packages/df/ec/7014c15626ab46b902b3bcc4b28a7bae46d8f281fc7ea9c95e22fcaaa917/regex-2025.11.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:1e00ec2970aab10dc5db34af535f21fcf32b4a31d99e34963419636e2f85ae39", size = 292673, upload-time = "2025-11-03T21:32:25.034Z" },
737
+ { url = "https://files.pythonhosted.org/packages/23/ab/3b952ff7239f20d05f1f99e9e20188513905f218c81d52fb5e78d2bf7634/regex-2025.11.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a4cb042b615245d5ff9b3794f56be4138b5adc35a4166014d31d1814744148c7", size = 291029, upload-time = "2025-11-03T21:32:26.528Z" },
738
+ { url = "https://files.pythonhosted.org/packages/21/7e/3dc2749fc684f455f162dcafb8a187b559e2614f3826877d3844a131f37b/regex-2025.11.3-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:44f264d4bf02f3176467d90b294d59bf1db9fe53c141ff772f27a8b456b2a9ed", size = 807437, upload-time = "2025-11-03T21:32:28.363Z" },
739
+ { url = "https://files.pythonhosted.org/packages/1b/0b/d529a85ab349c6a25d1ca783235b6e3eedf187247eab536797021f7126c6/regex-2025.11.3-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:7be0277469bf3bd7a34a9c57c1b6a724532a0d235cd0dc4e7f4316f982c28b19", size = 873368, upload-time = "2025-11-03T21:32:30.4Z" },
740
+ { url = "https://files.pythonhosted.org/packages/7d/18/2d868155f8c9e3e9d8f9e10c64e9a9f496bb8f7e037a88a8bed26b435af6/regex-2025.11.3-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:0d31e08426ff4b5b650f68839f5af51a92a5b51abd8554a60c2fbc7c71f25d0b", size = 914921, upload-time = "2025-11-03T21:32:32.123Z" },
741
+ { url = "https://files.pythonhosted.org/packages/2d/71/9d72ff0f354fa783fe2ba913c8734c3b433b86406117a8db4ea2bf1c7a2f/regex-2025.11.3-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e43586ce5bd28f9f285a6e729466841368c4a0353f6fd08d4ce4630843d3648a", size = 812708, upload-time = "2025-11-03T21:32:34.305Z" },
742
+ { url = "https://files.pythonhosted.org/packages/e7/19/ce4bf7f5575c97f82b6e804ffb5c4e940c62609ab2a0d9538d47a7fdf7d4/regex-2025.11.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:0f9397d561a4c16829d4e6ff75202c1c08b68a3bdbfe29dbfcdb31c9830907c6", size = 795472, upload-time = "2025-11-03T21:32:36.364Z" },
743
+ { url = "https://files.pythonhosted.org/packages/03/86/fd1063a176ffb7b2315f9a1b08d17b18118b28d9df163132615b835a26ee/regex-2025.11.3-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:dd16e78eb18ffdb25ee33a0682d17912e8cc8a770e885aeee95020046128f1ce", size = 868341, upload-time = "2025-11-03T21:32:38.042Z" },
744
+ { url = "https://files.pythonhosted.org/packages/12/43/103fb2e9811205e7386366501bc866a164a0430c79dd59eac886a2822950/regex-2025.11.3-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:ffcca5b9efe948ba0661e9df0fa50d2bc4b097c70b9810212d6b62f05d83b2dd", size = 854666, upload-time = "2025-11-03T21:32:40.079Z" },
745
+ { url = "https://files.pythonhosted.org/packages/7d/22/e392e53f3869b75804762c7c848bd2dd2abf2b70fb0e526f58724638bd35/regex-2025.11.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:c56b4d162ca2b43318ac671c65bd4d563e841a694ac70e1a976ac38fcf4ca1d2", size = 799473, upload-time = "2025-11-03T21:32:42.148Z" },
746
+ { url = "https://files.pythonhosted.org/packages/4f/f9/8bd6b656592f925b6845fcbb4d57603a3ac2fb2373344ffa1ed70aa6820a/regex-2025.11.3-cp313-cp313t-win32.whl", hash = "sha256:9ddc42e68114e161e51e272f667d640f97e84a2b9ef14b7477c53aac20c2d59a", size = 268792, upload-time = "2025-11-03T21:32:44.13Z" },
747
+ { url = "https://files.pythonhosted.org/packages/e5/87/0e7d603467775ff65cd2aeabf1b5b50cc1c3708556a8b849a2fa4dd1542b/regex-2025.11.3-cp313-cp313t-win_amd64.whl", hash = "sha256:7a7c7fdf755032ffdd72c77e3d8096bdcb0eb92e89e17571a196f03d88b11b3c", size = 280214, upload-time = "2025-11-03T21:32:45.853Z" },
748
+ { url = "https://files.pythonhosted.org/packages/8d/d0/2afc6f8e94e2b64bfb738a7c2b6387ac1699f09f032d363ed9447fd2bb57/regex-2025.11.3-cp313-cp313t-win_arm64.whl", hash = "sha256:df9eb838c44f570283712e7cff14c16329a9f0fb19ca492d21d4b7528ee6821e", size = 271469, upload-time = "2025-11-03T21:32:48.026Z" },
749
+ { url = "https://files.pythonhosted.org/packages/31/e9/f6e13de7e0983837f7b6d238ad9458800a874bf37c264f7923e63409944c/regex-2025.11.3-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:9697a52e57576c83139d7c6f213d64485d3df5bf84807c35fa409e6c970801c6", size = 489089, upload-time = "2025-11-03T21:32:50.027Z" },
750
+ { url = "https://files.pythonhosted.org/packages/a3/5c/261f4a262f1fa65141c1b74b255988bd2fa020cc599e53b080667d591cfc/regex-2025.11.3-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:e18bc3f73bd41243c9b38a6d9f2366cd0e0137a9aebe2d8ff76c5b67d4c0a3f4", size = 291059, upload-time = "2025-11-03T21:32:51.682Z" },
751
+ { url = "https://files.pythonhosted.org/packages/8e/57/f14eeb7f072b0e9a5a090d1712741fd8f214ec193dba773cf5410108bb7d/regex-2025.11.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:61a08bcb0ec14ff4e0ed2044aad948d0659604f824cbd50b55e30b0ec6f09c73", size = 288900, upload-time = "2025-11-03T21:32:53.569Z" },
752
+ { url = "https://files.pythonhosted.org/packages/3c/6b/1d650c45e99a9b327586739d926a1cd4e94666b1bd4af90428b36af66dc7/regex-2025.11.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c9c30003b9347c24bcc210958c5d167b9e4f9be786cb380a7d32f14f9b84674f", size = 799010, upload-time = "2025-11-03T21:32:55.222Z" },
753
+ { url = "https://files.pythonhosted.org/packages/99/ee/d66dcbc6b628ce4e3f7f0cbbb84603aa2fc0ffc878babc857726b8aab2e9/regex-2025.11.3-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:4e1e592789704459900728d88d41a46fe3969b82ab62945560a31732ffc19a6d", size = 864893, upload-time = "2025-11-03T21:32:57.239Z" },
754
+ { url = "https://files.pythonhosted.org/packages/bf/2d/f238229f1caba7ac87a6c4153d79947fb0261415827ae0f77c304260c7d3/regex-2025.11.3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:6538241f45eb5a25aa575dbba1069ad786f68a4f2773a29a2bd3dd1f9de787be", size = 911522, upload-time = "2025-11-03T21:32:59.274Z" },
755
+ { url = "https://files.pythonhosted.org/packages/bd/3d/22a4eaba214a917c80e04f6025d26143690f0419511e0116508e24b11c9b/regex-2025.11.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bce22519c989bb72a7e6b36a199384c53db7722fe669ba891da75907fe3587db", size = 803272, upload-time = "2025-11-03T21:33:01.393Z" },
756
+ { url = "https://files.pythonhosted.org/packages/84/b1/03188f634a409353a84b5ef49754b97dbcc0c0f6fd6c8ede505a8960a0a4/regex-2025.11.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:66d559b21d3640203ab9075797a55165d79017520685fb407b9234d72ab63c62", size = 787958, upload-time = "2025-11-03T21:33:03.379Z" },
757
+ { url = "https://files.pythonhosted.org/packages/99/6a/27d072f7fbf6fadd59c64d210305e1ff865cc3b78b526fd147db768c553b/regex-2025.11.3-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:669dcfb2e38f9e8c69507bace46f4889e3abbfd9b0c29719202883c0a603598f", size = 859289, upload-time = "2025-11-03T21:33:05.374Z" },
758
+ { url = "https://files.pythonhosted.org/packages/9a/70/1b3878f648e0b6abe023172dacb02157e685564853cc363d9961bcccde4e/regex-2025.11.3-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:32f74f35ff0f25a5021373ac61442edcb150731fbaa28286bbc8bb1582c89d02", size = 850026, upload-time = "2025-11-03T21:33:07.131Z" },
759
+ { url = "https://files.pythonhosted.org/packages/dd/d5/68e25559b526b8baab8e66839304ede68ff6727237a47727d240006bd0ff/regex-2025.11.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:e6c7a21dffba883234baefe91bc3388e629779582038f75d2a5be918e250f0ed", size = 789499, upload-time = "2025-11-03T21:33:09.141Z" },
760
+ { url = "https://files.pythonhosted.org/packages/fc/df/43971264857140a350910d4e33df725e8c94dd9dee8d2e4729fa0d63d49e/regex-2025.11.3-cp314-cp314-win32.whl", hash = "sha256:795ea137b1d809eb6836b43748b12634291c0ed55ad50a7d72d21edf1cd565c4", size = 271604, upload-time = "2025-11-03T21:33:10.9Z" },
761
+ { url = "https://files.pythonhosted.org/packages/01/6f/9711b57dc6894a55faf80a4c1b5aa4f8649805cb9c7aef46f7d27e2b9206/regex-2025.11.3-cp314-cp314-win_amd64.whl", hash = "sha256:9f95fbaa0ee1610ec0fc6b26668e9917a582ba80c52cc6d9ada15e30aa9ab9ad", size = 280320, upload-time = "2025-11-03T21:33:12.572Z" },
762
+ { url = "https://files.pythonhosted.org/packages/f1/7e/f6eaa207d4377481f5e1775cdeb5a443b5a59b392d0065f3417d31d80f87/regex-2025.11.3-cp314-cp314-win_arm64.whl", hash = "sha256:dfec44d532be4c07088c3de2876130ff0fbeeacaa89a137decbbb5f665855a0f", size = 273372, upload-time = "2025-11-03T21:33:14.219Z" },
763
+ { url = "https://files.pythonhosted.org/packages/c3/06/49b198550ee0f5e4184271cee87ba4dfd9692c91ec55289e6282f0f86ccf/regex-2025.11.3-cp314-cp314t-macosx_10_13_universal2.whl", hash = "sha256:ba0d8a5d7f04f73ee7d01d974d47c5834f8a1b0224390e4fe7c12a3a92a78ecc", size = 491985, upload-time = "2025-11-03T21:33:16.555Z" },
764
+ { url = "https://files.pythonhosted.org/packages/ce/bf/abdafade008f0b1c9da10d934034cb670432d6cf6cbe38bbb53a1cfd6cf8/regex-2025.11.3-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:442d86cf1cfe4faabf97db7d901ef58347efd004934da045c745e7b5bd57ac49", size = 292669, upload-time = "2025-11-03T21:33:18.32Z" },
765
+ { url = "https://files.pythonhosted.org/packages/f9/ef/0c357bb8edbd2ad8e273fcb9e1761bc37b8acbc6e1be050bebd6475f19c1/regex-2025.11.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:fd0a5e563c756de210bb964789b5abe4f114dacae9104a47e1a649b910361536", size = 291030, upload-time = "2025-11-03T21:33:20.048Z" },
766
+ { url = "https://files.pythonhosted.org/packages/79/06/edbb67257596649b8fb088d6aeacbcb248ac195714b18a65e018bf4c0b50/regex-2025.11.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:bf3490bcbb985a1ae97b2ce9ad1c0f06a852d5b19dde9b07bdf25bf224248c95", size = 807674, upload-time = "2025-11-03T21:33:21.797Z" },
767
+ { url = "https://files.pythonhosted.org/packages/f4/d9/ad4deccfce0ea336296bd087f1a191543bb99ee1c53093dcd4c64d951d00/regex-2025.11.3-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:3809988f0a8b8c9dcc0f92478d6501fac7200b9ec56aecf0ec21f4a2ec4b6009", size = 873451, upload-time = "2025-11-03T21:33:23.741Z" },
768
+ { url = "https://files.pythonhosted.org/packages/13/75/a55a4724c56ef13e3e04acaab29df26582f6978c000ac9cd6810ad1f341f/regex-2025.11.3-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:f4ff94e58e84aedb9c9fce66d4ef9f27a190285b451420f297c9a09f2b9abee9", size = 914980, upload-time = "2025-11-03T21:33:25.999Z" },
769
+ { url = "https://files.pythonhosted.org/packages/67/1e/a1657ee15bd9116f70d4a530c736983eed997b361e20ecd8f5ca3759d5c5/regex-2025.11.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7eb542fd347ce61e1321b0a6b945d5701528dca0cd9759c2e3bb8bd57e47964d", size = 812852, upload-time = "2025-11-03T21:33:27.852Z" },
770
+ { url = "https://files.pythonhosted.org/packages/b8/6f/f7516dde5506a588a561d296b2d0044839de06035bb486b326065b4c101e/regex-2025.11.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:d6c2d5919075a1f2e413c00b056ea0c2f065b3f5fe83c3d07d325ab92dce51d6", size = 795566, upload-time = "2025-11-03T21:33:32.364Z" },
771
+ { url = "https://files.pythonhosted.org/packages/d9/dd/3d10b9e170cc16fb34cb2cef91513cf3df65f440b3366030631b2984a264/regex-2025.11.3-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:3f8bf11a4827cc7ce5a53d4ef6cddd5ad25595d3c1435ef08f76825851343154", size = 868463, upload-time = "2025-11-03T21:33:34.459Z" },
772
+ { url = "https://files.pythonhosted.org/packages/f5/8e/935e6beff1695aa9085ff83195daccd72acc82c81793df480f34569330de/regex-2025.11.3-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:22c12d837298651e5550ac1d964e4ff57c3f56965fc1812c90c9fb2028eaf267", size = 854694, upload-time = "2025-11-03T21:33:36.793Z" },
773
+ { url = "https://files.pythonhosted.org/packages/92/12/10650181a040978b2f5720a6a74d44f841371a3d984c2083fc1752e4acf6/regex-2025.11.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:62ba394a3dda9ad41c7c780f60f6e4a70988741415ae96f6d1bf6c239cf01379", size = 799691, upload-time = "2025-11-03T21:33:39.079Z" },
774
+ { url = "https://files.pythonhosted.org/packages/67/90/8f37138181c9a7690e7e4cb388debbd389342db3c7381d636d2875940752/regex-2025.11.3-cp314-cp314t-win32.whl", hash = "sha256:4bf146dca15cdd53224a1bf46d628bd7590e4a07fbb69e720d561aea43a32b38", size = 274583, upload-time = "2025-11-03T21:33:41.302Z" },
775
+ { url = "https://files.pythonhosted.org/packages/8f/cd/867f5ec442d56beb56f5f854f40abcfc75e11d10b11fdb1869dd39c63aaf/regex-2025.11.3-cp314-cp314t-win_amd64.whl", hash = "sha256:adad1a1bcf1c9e76346e091d22d23ac54ef28e1365117d99521631078dfec9de", size = 284286, upload-time = "2025-11-03T21:33:43.324Z" },
776
+ { url = "https://files.pythonhosted.org/packages/20/31/32c0c4610cbc070362bf1d2e4ea86d1ea29014d400a6d6c2486fcfd57766/regex-2025.11.3-cp314-cp314t-win_arm64.whl", hash = "sha256:c54f768482cef41e219720013cd05933b6f971d9562544d691c68699bf2b6801", size = 274741, upload-time = "2025-11-03T21:33:45.557Z" },
777
+ ]
778
+
779
  [[package]]
780
  name = "requests"
781
  version = "2.32.4"
 
841
  { url = "https://files.pythonhosted.org/packages/4d/c0/1108ad9f01567f66b3154063605b350b69c3c9366732e09e45f9fd0d1deb/safehttpx-0.1.6-py3-none-any.whl", hash = "sha256:407cff0b410b071623087c63dd2080c3b44dc076888d8c5823c00d1e58cb381c", size = 8692, upload-time = "2024-12-02T18:44:08.555Z" },
842
  ]
843
 
844
+ [[package]]
845
+ name = "safetensors"
846
+ version = "0.7.0"
847
+ source = { registry = "https://pypi.org/simple" }
848
+ sdist = { url = "https://files.pythonhosted.org/packages/29/9c/6e74567782559a63bd040a236edca26fd71bc7ba88de2ef35d75df3bca5e/safetensors-0.7.0.tar.gz", hash = "sha256:07663963b67e8bd9f0b8ad15bb9163606cd27cc5a1b96235a50d8369803b96b0", size = 200878, upload-time = "2025-11-19T15:18:43.199Z" }
849
+ wheels = [
850
+ { url = "https://files.pythonhosted.org/packages/fa/47/aef6c06649039accf914afef490268e1067ed82be62bcfa5b7e886ad15e8/safetensors-0.7.0-cp38-abi3-macosx_10_12_x86_64.whl", hash = "sha256:c82f4d474cf725255d9e6acf17252991c3c8aac038d6ef363a4bf8be2f6db517", size = 467781, upload-time = "2025-11-19T15:18:35.84Z" },
851
+ { url = "https://files.pythonhosted.org/packages/e8/00/374c0c068e30cd31f1e1b46b4b5738168ec79e7689ca82ee93ddfea05109/safetensors-0.7.0-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:94fd4858284736bb67a897a41608b5b0c2496c9bdb3bf2af1fa3409127f20d57", size = 447058, upload-time = "2025-11-19T15:18:34.416Z" },
852
+ { url = "https://files.pythonhosted.org/packages/f1/06/578ffed52c2296f93d7fd2d844cabfa92be51a587c38c8afbb8ae449ca89/safetensors-0.7.0-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e07d91d0c92a31200f25351f4acb2bc6aff7f48094e13ebb1d0fb995b54b6542", size = 491748, upload-time = "2025-11-19T15:18:09.79Z" },
853
+ { url = "https://files.pythonhosted.org/packages/ae/33/1debbbb70e4791dde185edb9413d1fe01619255abb64b300157d7f15dddd/safetensors-0.7.0-cp38-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8469155f4cb518bafb4acf4865e8bb9d6804110d2d9bdcaa78564b9fd841e104", size = 503881, upload-time = "2025-11-19T15:18:16.145Z" },
854
+ { url = "https://files.pythonhosted.org/packages/8e/1c/40c2ca924d60792c3be509833df711b553c60effbd91da6f5284a83f7122/safetensors-0.7.0-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:54bef08bf00a2bff599982f6b08e8770e09cc012d7bba00783fc7ea38f1fb37d", size = 623463, upload-time = "2025-11-19T15:18:21.11Z" },
855
+ { url = "https://files.pythonhosted.org/packages/9b/3a/13784a9364bd43b0d61eef4bea2845039bc2030458b16594a1bd787ae26e/safetensors-0.7.0-cp38-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:42cb091236206bb2016d245c377ed383aa7f78691748f3bb6ee1bfa51ae2ce6a", size = 532855, upload-time = "2025-11-19T15:18:25.719Z" },
856
+ { url = "https://files.pythonhosted.org/packages/a0/60/429e9b1cb3fc651937727befe258ea24122d9663e4d5709a48c9cbfceecb/safetensors-0.7.0-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dac7252938f0696ddea46f5e855dd3138444e82236e3be475f54929f0c510d48", size = 507152, upload-time = "2025-11-19T15:18:33.023Z" },
857
+ { url = "https://files.pythonhosted.org/packages/3c/a8/4b45e4e059270d17af60359713ffd83f97900d45a6afa73aaa0d737d48b6/safetensors-0.7.0-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1d060c70284127fa805085d8f10fbd0962792aed71879d00864acda69dbab981", size = 541856, upload-time = "2025-11-19T15:18:31.075Z" },
858
+ { url = "https://files.pythonhosted.org/packages/06/87/d26d8407c44175d8ae164a95b5a62707fcc445f3c0c56108e37d98070a3d/safetensors-0.7.0-cp38-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:cdab83a366799fa730f90a4ebb563e494f28e9e92c4819e556152ad55e43591b", size = 674060, upload-time = "2025-11-19T15:18:37.211Z" },
859
+ { url = "https://files.pythonhosted.org/packages/11/f5/57644a2ff08dc6325816ba7217e5095f17269dada2554b658442c66aed51/safetensors-0.7.0-cp38-abi3-musllinux_1_2_armv7l.whl", hash = "sha256:672132907fcad9f2aedcb705b2d7b3b93354a2aec1b2f706c4db852abe338f85", size = 771715, upload-time = "2025-11-19T15:18:38.689Z" },
860
+ { url = "https://files.pythonhosted.org/packages/86/31/17883e13a814bd278ae6e266b13282a01049b0c81341da7fd0e3e71a80a3/safetensors-0.7.0-cp38-abi3-musllinux_1_2_i686.whl", hash = "sha256:5d72abdb8a4d56d4020713724ba81dac065fedb7f3667151c4a637f1d3fb26c0", size = 714377, upload-time = "2025-11-19T15:18:40.162Z" },
861
+ { url = "https://files.pythonhosted.org/packages/4a/d8/0c8a7dc9b41dcac53c4cbf9df2b9c83e0e0097203de8b37a712b345c0be5/safetensors-0.7.0-cp38-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:b0f6d66c1c538d5a94a73aa9ddca8ccc4227e6c9ff555322ea40bdd142391dd4", size = 677368, upload-time = "2025-11-19T15:18:41.627Z" },
862
+ { url = "https://files.pythonhosted.org/packages/05/e5/cb4b713c8a93469e3c5be7c3f8d77d307e65fe89673e731f5c2bfd0a9237/safetensors-0.7.0-cp38-abi3-win32.whl", hash = "sha256:c74af94bf3ac15ac4d0f2a7c7b4663a15f8c2ab15ed0fc7531ca61d0835eccba", size = 326423, upload-time = "2025-11-19T15:18:45.74Z" },
863
+ { url = "https://files.pythonhosted.org/packages/5d/e6/ec8471c8072382cb91233ba7267fd931219753bb43814cbc71757bfd4dab/safetensors-0.7.0-cp38-abi3-win_amd64.whl", hash = "sha256:d1239932053f56f3456f32eb9625590cc7582e905021f94636202a864d470755", size = 341380, upload-time = "2025-11-19T15:18:44.427Z" },
864
+ ]
865
+
866
  [[package]]
867
  name = "semantic-version"
868
  version = "2.10.0"
 
911
  { url = "https://files.pythonhosted.org/packages/f7/1f/b876b1f83aef204198a42dc101613fefccb32258e5428b5f9259677864b4/starlette-0.47.2-py3-none-any.whl", hash = "sha256:c5847e96134e5c5371ee9fac6fdf1a67336d5815e09eb2a01fdb57a351ef915b", size = 72984, upload-time = "2025-07-20T17:31:56.738Z" },
912
  ]
913
 
914
+ [[package]]
915
+ name = "tokenizers"
916
+ version = "0.22.1"
917
+ source = { registry = "https://pypi.org/simple" }
918
+ dependencies = [
919
+ { name = "huggingface-hub" },
920
+ ]
921
+ sdist = { url = "https://files.pythonhosted.org/packages/1c/46/fb6854cec3278fbfa4a75b50232c77622bc517ac886156e6afbfa4d8fc6e/tokenizers-0.22.1.tar.gz", hash = "sha256:61de6522785310a309b3407bac22d99c4db5dba349935e99e4d15ea2226af2d9", size = 363123, upload-time = "2025-09-19T09:49:23.424Z" }
922
+ wheels = [
923
+ { url = "https://files.pythonhosted.org/packages/bf/33/f4b2d94ada7ab297328fc671fed209368ddb82f965ec2224eb1892674c3a/tokenizers-0.22.1-cp39-abi3-macosx_10_12_x86_64.whl", hash = "sha256:59fdb013df17455e5f950b4b834a7b3ee2e0271e6378ccb33aa74d178b513c73", size = 3069318, upload-time = "2025-09-19T09:49:11.848Z" },
924
+ { url = "https://files.pythonhosted.org/packages/1c/58/2aa8c874d02b974990e89ff95826a4852a8b2a273c7d1b4411cdd45a4565/tokenizers-0.22.1-cp39-abi3-macosx_11_0_arm64.whl", hash = "sha256:8d4e484f7b0827021ac5f9f71d4794aaef62b979ab7608593da22b1d2e3c4edc", size = 2926478, upload-time = "2025-09-19T09:49:09.759Z" },
925
+ { url = "https://files.pythonhosted.org/packages/1e/3b/55e64befa1e7bfea963cf4b787b2cea1011362c4193f5477047532ce127e/tokenizers-0.22.1-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:19d2962dd28bc67c1f205ab180578a78eef89ac60ca7ef7cbe9635a46a56422a", size = 3256994, upload-time = "2025-09-19T09:48:56.701Z" },
926
+ { url = "https://files.pythonhosted.org/packages/71/0b/fbfecf42f67d9b7b80fde4aabb2b3110a97fac6585c9470b5bff103a80cb/tokenizers-0.22.1-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:38201f15cdb1f8a6843e6563e6e79f4abd053394992b9bbdf5213ea3469b4ae7", size = 3153141, upload-time = "2025-09-19T09:48:59.749Z" },
927
+ { url = "https://files.pythonhosted.org/packages/17/a9/b38f4e74e0817af8f8ef925507c63c6ae8171e3c4cb2d5d4624bf58fca69/tokenizers-0.22.1-cp39-abi3-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d1cbe5454c9a15df1b3443c726063d930c16f047a3cc724b9e6e1a91140e5a21", size = 3508049, upload-time = "2025-09-19T09:49:05.868Z" },
928
+ { url = "https://files.pythonhosted.org/packages/d2/48/dd2b3dac46bb9134a88e35d72e1aa4869579eacc1a27238f1577270773ff/tokenizers-0.22.1-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e7d094ae6312d69cc2a872b54b91b309f4f6fbce871ef28eb27b52a98e4d0214", size = 3710730, upload-time = "2025-09-19T09:49:01.832Z" },
929
+ { url = "https://files.pythonhosted.org/packages/93/0e/ccabc8d16ae4ba84a55d41345207c1e2ea88784651a5a487547d80851398/tokenizers-0.22.1-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:afd7594a56656ace95cdd6df4cca2e4059d294c5cfb1679c57824b605556cb2f", size = 3412560, upload-time = "2025-09-19T09:49:03.867Z" },
930
+ { url = "https://files.pythonhosted.org/packages/d0/c6/dc3a0db5a6766416c32c034286d7c2d406da1f498e4de04ab1b8959edd00/tokenizers-0.22.1-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2ef6063d7a84994129732b47e7915e8710f27f99f3a3260b8a38fc7ccd083f4", size = 3250221, upload-time = "2025-09-19T09:49:07.664Z" },
931
+ { url = "https://files.pythonhosted.org/packages/d7/a6/2c8486eef79671601ff57b093889a345dd3d576713ef047776015dc66de7/tokenizers-0.22.1-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:ba0a64f450b9ef412c98f6bcd2a50c6df6e2443b560024a09fa6a03189726879", size = 9345569, upload-time = "2025-09-19T09:49:14.214Z" },
932
+ { url = "https://files.pythonhosted.org/packages/6b/16/32ce667f14c35537f5f605fe9bea3e415ea1b0a646389d2295ec348d5657/tokenizers-0.22.1-cp39-abi3-musllinux_1_2_armv7l.whl", hash = "sha256:331d6d149fa9c7d632cde4490fb8bbb12337fa3a0232e77892be656464f4b446", size = 9271599, upload-time = "2025-09-19T09:49:16.639Z" },
933
+ { url = "https://files.pythonhosted.org/packages/51/7c/a5f7898a3f6baa3fc2685c705e04c98c1094c523051c805cdd9306b8f87e/tokenizers-0.22.1-cp39-abi3-musllinux_1_2_i686.whl", hash = "sha256:607989f2ea68a46cb1dfbaf3e3aabdf3f21d8748312dbeb6263d1b3b66c5010a", size = 9533862, upload-time = "2025-09-19T09:49:19.146Z" },
934
+ { url = "https://files.pythonhosted.org/packages/36/65/7e75caea90bc73c1dd8d40438adf1a7bc26af3b8d0a6705ea190462506e1/tokenizers-0.22.1-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:a0f307d490295717726598ef6fa4f24af9d484809223bbc253b201c740a06390", size = 9681250, upload-time = "2025-09-19T09:49:21.501Z" },
935
+ { url = "https://files.pythonhosted.org/packages/30/2c/959dddef581b46e6209da82df3b78471e96260e2bc463f89d23b1bf0e52a/tokenizers-0.22.1-cp39-abi3-win32.whl", hash = "sha256:b5120eed1442765cd90b903bb6cfef781fd8fe64e34ccaecbae4c619b7b12a82", size = 2472003, upload-time = "2025-09-19T09:49:27.089Z" },
936
+ { url = "https://files.pythonhosted.org/packages/b3/46/e33a8c93907b631a99377ef4c5f817ab453d0b34f93529421f42ff559671/tokenizers-0.22.1-cp39-abi3-win_amd64.whl", hash = "sha256:65fd6e3fb11ca1e78a6a93602490f134d1fdeb13bcef99389d5102ea318ed138", size = 2674684, upload-time = "2025-09-19T09:49:24.953Z" },
937
+ ]
938
+
939
  [[package]]
940
  name = "tomlkit"
941
  version = "0.13.3"
 
954
  { name = "gradio-leaderboard" },
955
  { name = "pandas" },
956
  { name = "plotly" },
957
+ { name = "transformers" },
958
  ]
959
 
960
  [package.metadata]
 
963
  { name = "gradio-leaderboard", specifier = ">=0.0.13" },
964
  { name = "pandas", specifier = ">=2.2.3" },
965
  { name = "plotly", specifier = ">=6.0.1" },
966
+ { name = "transformers", specifier = ">=4.57.3" },
967
  ]
968
 
969
  [[package]]
 
978
  { url = "https://files.pythonhosted.org/packages/d0/30/dc54f88dd4a2b5dc8a0279bdd7270e735851848b762aeb1c1184ed1f6b14/tqdm-4.67.1-py3-none-any.whl", hash = "sha256:26445eca388f82e72884e0d580d5464cd801a3ea01e63e5601bdff9ba6a48de2", size = 78540, upload-time = "2024-11-24T20:12:19.698Z" },
979
  ]
980
 
981
+ [[package]]
982
+ name = "transformers"
983
+ version = "4.57.3"
984
+ source = { registry = "https://pypi.org/simple" }
985
+ dependencies = [
986
+ { name = "filelock" },
987
+ { name = "huggingface-hub" },
988
+ { name = "numpy" },
989
+ { name = "packaging" },
990
+ { name = "pyyaml" },
991
+ { name = "regex" },
992
+ { name = "requests" },
993
+ { name = "safetensors" },
994
+ { name = "tokenizers" },
995
+ { name = "tqdm" },
996
+ ]
997
+ sdist = { url = "https://files.pythonhosted.org/packages/dd/70/d42a739e8dfde3d92bb2fff5819cbf331fe9657323221e79415cd5eb65ee/transformers-4.57.3.tar.gz", hash = "sha256:df4945029aaddd7c09eec5cad851f30662f8bd1746721b34cc031d70c65afebc", size = 10139680, upload-time = "2025-11-25T15:51:30.139Z" }
998
+ wheels = [
999
+ { url = "https://files.pythonhosted.org/packages/6a/6b/2f416568b3c4c91c96e5a365d164f8a4a4a88030aa8ab4644181fdadce97/transformers-4.57.3-py3-none-any.whl", hash = "sha256:c77d353a4851b1880191603d36acb313411d3577f6e2897814f333841f7003f4", size = 11993463, upload-time = "2025-11-25T15:51:26.493Z" },
1000
+ ]
1001
+
1002
  [[package]]
1003
  name = "typer"
1004
  version = "0.16.0"