David Pomerenke
commited on
Commit
·
086a421
1
Parent(s):
edcfb8f
Discuss translation metric biases and add chrF scores
Browse files
app.py
CHANGED
@@ -231,7 +231,7 @@ def create_language_stats_df(results):
|
|
231 |
def create_scatter_plot(results):
|
232 |
fig = go.Figure()
|
233 |
|
234 |
-
x_vals = [lang["speakers"] / 1_000_000 for lang in results] # Convert to millions
|
235 |
y_vals = [lang["bleu"] for lang in results]
|
236 |
labels = [lang["language_name"] for lang in results]
|
237 |
|
@@ -259,7 +259,7 @@ def create_scatter_plot(results):
|
|
259 |
# Use log scale for x-axis since speaker numbers vary widely
|
260 |
fig.update_xaxes(type="log")
|
261 |
|
262 |
-
return fig
|
263 |
|
264 |
|
265 |
def format_number(n):
|
@@ -450,13 +450,12 @@ with gr.Blocks(title="AI Language Translation Benchmark") as demo:
|
|
450 |
)
|
451 |
|
452 |
bar_plot = create_model_comparison_plot(results)
|
453 |
-
scatter_plot = create_scatter_plot(results)
|
454 |
world_map = create_world_map(results)
|
455 |
|
456 |
create_leaderboard_df(results)
|
457 |
gr.Plot(value=bar_plot, label="Model Comparison")
|
458 |
create_language_stats_df(results)
|
459 |
-
|
460 |
gr.Plot(value=world_map, container=False, elem_classes="fullwidth-plot")
|
461 |
|
462 |
gr.Markdown(
|
|
|
231 |
def create_scatter_plot(results):
|
232 |
fig = go.Figure()
|
233 |
|
234 |
+
x_vals = [lang["speakers"] / 1_000_000 for lang in results if lang["speakers"] >= 10_000] # Convert to millions
|
235 |
y_vals = [lang["bleu"] for lang in results]
|
236 |
labels = [lang["language_name"] for lang in results]
|
237 |
|
|
|
259 |
# Use log scale for x-axis since speaker numbers vary widely
|
260 |
fig.update_xaxes(type="log")
|
261 |
|
262 |
+
return gr.Plot(value=fig, label="Speaker population vs BLEU")
|
263 |
|
264 |
|
265 |
def format_number(n):
|
|
|
450 |
)
|
451 |
|
452 |
bar_plot = create_model_comparison_plot(results)
|
|
|
453 |
world_map = create_world_map(results)
|
454 |
|
455 |
create_leaderboard_df(results)
|
456 |
gr.Plot(value=bar_plot, label="Model Comparison")
|
457 |
create_language_stats_df(results)
|
458 |
+
create_scatter_plot(results)
|
459 |
gr.Plot(value=world_map, container=False, elem_classes="fullwidth-plot")
|
460 |
|
461 |
gr.Markdown(
|
biases.md
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
We want to make a benchmark that objectively
|
2 |
+
|
3 |
+
- shows the level of how well-supported or neglected different languages are;
|
4 |
+
- shows for each language the performance of different AI models;
|
5 |
+
- shows how performant different AI models generally are regarding language support.
|
6 |
+
|
7 |
+
Turns out this is really difficult to do without having some kind of bias.
|
8 |
+
|
9 |
+
Here's a list of approaches:
|
10 |
+
|
11 |
+
- Translate **from English** to `evaluated_language`: This will give an advantage to languages that are similar to English, and makes it impossible to evaluate English itself.
|
12 |
+
- Translate from **every other language** to `evaluated_language`: This will give an advantage to language families that have a lot of members.
|
13 |
+
- Translate from every other language **(weighted by population)** to `evaluated language`: The metrics are usually not comparable across evaluated languages, specifically ...
|
14 |
+
- **BLEU**: May support some languages better than others.
|
15 |
+
- **BertScore**: Will give an advantage to English, which it is primarily trained on.
|
16 |
+
- **Multilingual** BertScore: Will give an advantage to the languages primarily trained on; may recognize semantic similarity even for untranslated words.
|
17 |
+
- **ChrF++**: Better than BLEU.
|
18 |
+
- **Sp**BLEU, SentencePiece-based tokenizers trained separately on `evaluated_language`, as provided for the FLORES+ dataset: Seems okay.
|
19 |
+
- Translate **from** `evaluated_language` to every other language (weighted by population), evaluate using any metric: For 2 very similar sister languages that are equally well translated, this gives an advantage to the smaller language (because it has the big sister language as an easy target, whereas the other sister language only has the small sister language as an easy target).
|
20 |
+
- Translate from `evaluated_language` to every language (`evaluated_language` **itself included**, weighted by population), evaluate using any metric: Gives an advantage to big languages that trivially get a high score for translating to themselves; but this is fair in terms of objectively showing "to how many people can I communicate (and to what extent) given the AI model".
|
21 |
+
- Rather than translation, use **masked language modeling** just on `evaluated_language` itself: This still depends on an evaluation metric, which is usually not comparable across languages, see the problems above.
|
22 |
+
- Use **categorization** of sentences in `evaluated_language` (where the same categories are used for all languages): Categories may be tied to certain cultures and thus languages, giving an advantage to the language/culture in which the categories are created.
|
23 |
+
- Use **culture-independent categories** for categorization of sentences in `evaluated_language` using zero-shot prompting with a given set of category labels: The labels should be language-independent but consistent at the same time, which may be difficult; in practice, English labels may be just fine.
|
24 |
+
- Use culture-independent categorization of sentences in `evaluated_language` using **few-shot prompting**: This seems okay.
|
evals.py
CHANGED
@@ -40,7 +40,7 @@ client = AsyncOpenAI(
|
|
40 |
)
|
41 |
cache = Memory(location=".cache", verbose=0).cache
|
42 |
bleu = evaluate.load("bleu")
|
43 |
-
|
44 |
tokenizer = NllbTokenizer.from_pretrained("facebook/nllb-200-distilled-600M")
|
45 |
rate_limit = AsyncLimiter(max_rate=20, time_period=1)
|
46 |
|
@@ -198,15 +198,17 @@ async def translate_and_evaluate(model, original_language_bcp_47, sentence_nr):
|
|
198 |
max_tokens=1024,
|
199 |
)
|
200 |
prediction = reply.choices[0].message.content.strip()
|
201 |
-
|
202 |
predictions=[prediction],
|
203 |
references=[target_sentence],
|
204 |
tokenizer=tokenizer.tokenize,
|
205 |
)
|
|
|
206 |
return {
|
207 |
"model": model,
|
208 |
"bcp_47": original_language["bcp_47"],
|
209 |
-
"bleu":
|
|
|
210 |
"sentence_nr": sentence_nr,
|
211 |
}
|
212 |
|
@@ -239,11 +241,11 @@ async def main():
|
|
239 |
if score["bcp_47"] == language.bcp_47 and score["model"] == model
|
240 |
]
|
241 |
if results_for_model:
|
242 |
-
bleu = mean([s["bleu"] for s in results_for_model])
|
243 |
results_for_language.append(
|
244 |
{
|
245 |
"model": model,
|
246 |
-
"bleu": bleu,
|
|
|
247 |
}
|
248 |
)
|
249 |
if results_for_language:
|
@@ -254,6 +256,7 @@ async def main():
|
|
254 |
"speakers": language.speakers,
|
255 |
"scores": results_for_language,
|
256 |
"bleu": mean([s["bleu"] for s in results_for_language]),
|
|
|
257 |
"commonvoice_hours": language.commonvoice_hours
|
258 |
if not pd.isna(language.commonvoice_hours)
|
259 |
else None,
|
|
|
40 |
)
|
41 |
cache = Memory(location=".cache", verbose=0).cache
|
42 |
bleu = evaluate.load("bleu")
|
43 |
+
chrf = evaluate.load("chrf")
|
44 |
tokenizer = NllbTokenizer.from_pretrained("facebook/nllb-200-distilled-600M")
|
45 |
rate_limit = AsyncLimiter(max_rate=20, time_period=1)
|
46 |
|
|
|
198 |
max_tokens=1024,
|
199 |
)
|
200 |
prediction = reply.choices[0].message.content.strip()
|
201 |
+
bleu_score = bleu.compute(
|
202 |
predictions=[prediction],
|
203 |
references=[target_sentence],
|
204 |
tokenizer=tokenizer.tokenize,
|
205 |
)
|
206 |
+
chrf_score = chrf.compute(predictions=[prediction], references=[target_sentence])
|
207 |
return {
|
208 |
"model": model,
|
209 |
"bcp_47": original_language["bcp_47"],
|
210 |
+
"bleu": bleu_score["bleu"],
|
211 |
+
"chrf": chrf_score["score"],
|
212 |
"sentence_nr": sentence_nr,
|
213 |
}
|
214 |
|
|
|
241 |
if score["bcp_47"] == language.bcp_47 and score["model"] == model
|
242 |
]
|
243 |
if results_for_model:
|
|
|
244 |
results_for_language.append(
|
245 |
{
|
246 |
"model": model,
|
247 |
+
"bleu": mean([s["bleu"] for s in results_for_model]),
|
248 |
+
"chrf": mean([s["chrf"] for s in results_for_model]),
|
249 |
}
|
250 |
)
|
251 |
if results_for_language:
|
|
|
256 |
"speakers": language.speakers,
|
257 |
"scores": results_for_language,
|
258 |
"bleu": mean([s["bleu"] for s in results_for_language]),
|
259 |
+
"chrf": mean([s["chrf"] for s in results_for_language]),
|
260 |
"commonvoice_hours": language.commonvoice_hours
|
261 |
if not pd.isna(language.commonvoice_hours)
|
262 |
else None,
|
results.json
CHANGED
@@ -6,10 +6,12 @@
|
|
6 |
"scores": [
|
7 |
{
|
8 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
9 |
-
"bleu": 0.
|
|
|
10 |
}
|
11 |
],
|
12 |
-
"bleu": 0.
|
|
|
13 |
"commonvoice_hours": 2649.0,
|
14 |
"commonvoice_locale": "en",
|
15 |
"population": {
|
@@ -177,10 +179,12 @@
|
|
177 |
"scores": [
|
178 |
{
|
179 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
180 |
-
"bleu": 0.
|
|
|
181 |
}
|
182 |
],
|
183 |
-
"bleu": 0.
|
|
|
184 |
"commonvoice_hours": 422.0,
|
185 |
"commonvoice_locale": "zh-TW",
|
186 |
"population": {
|
@@ -213,10 +217,12 @@
|
|
213 |
"scores": [
|
214 |
{
|
215 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
216 |
-
"bleu": 0.
|
|
|
217 |
}
|
218 |
],
|
219 |
-
"bleu": 0.
|
|
|
220 |
"commonvoice_hours": 16.0,
|
221 |
"commonvoice_locale": "hi-IN",
|
222 |
"population": {
|
@@ -235,10 +241,12 @@
|
|
235 |
"scores": [
|
236 |
{
|
237 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
238 |
-
"bleu": 0.
|
|
|
239 |
}
|
240 |
],
|
241 |
-
"bleu": 0.
|
|
|
242 |
"commonvoice_hours": 446.0,
|
243 |
"commonvoice_locale": "es",
|
244 |
"population": {
|
@@ -290,10 +298,12 @@
|
|
290 |
"scores": [
|
291 |
{
|
292 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
293 |
-
"bleu": 0.
|
|
|
294 |
}
|
295 |
],
|
296 |
-
"bleu": 0.
|
|
|
297 |
"commonvoice_hours": 91.0,
|
298 |
"commonvoice_locale": "ar",
|
299 |
"population": {
|
@@ -344,10 +354,12 @@
|
|
344 |
"scores": [
|
345 |
{
|
346 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
347 |
-
"bleu": 0.
|
|
|
348 |
}
|
349 |
],
|
350 |
-
"bleu": 0.
|
|
|
351 |
"commonvoice_hours": 76.0,
|
352 |
"commonvoice_locale": "ur",
|
353 |
"population": {
|
@@ -365,11 +377,13 @@
|
|
365 |
"scores": [
|
366 |
{
|
367 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
368 |
-
"bleu": 0.
|
|
|
369 |
}
|
370 |
],
|
371 |
-
"bleu": 0.
|
372 |
-
"
|
|
|
373 |
"commonvoice_locale": "fr",
|
374 |
"population": {
|
375 |
"AD": 5775,
|
@@ -443,10 +457,12 @@
|
|
443 |
"scores": [
|
444 |
{
|
445 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
446 |
-
"bleu": 0.
|
|
|
447 |
}
|
448 |
],
|
449 |
-
"bleu": 0.
|
|
|
450 |
"commonvoice_hours": 49.0,
|
451 |
"commonvoice_locale": "bn",
|
452 |
"population": {
|
@@ -464,10 +480,12 @@
|
|
464 |
"scores": [
|
465 |
{
|
466 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
467 |
-
"bleu": 0.
|
|
|
468 |
}
|
469 |
],
|
470 |
-
"bleu": 0.
|
|
|
471 |
"commonvoice_hours": 176.0,
|
472 |
"commonvoice_locale": "pt",
|
473 |
"population": {
|
@@ -496,30 +514,37 @@
|
|
496 |
"scores": [
|
497 |
{
|
498 |
"model": "openai/gpt-4o-mini",
|
499 |
-
"bleu": 0.
|
|
|
500 |
},
|
501 |
{
|
502 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
503 |
-
"bleu": 0.
|
|
|
504 |
},
|
505 |
{
|
506 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
507 |
-
"bleu": 0.
|
|
|
508 |
},
|
509 |
{
|
510 |
"model": "google/gemini-2.0-flash-001",
|
511 |
-
"bleu": 0.
|
|
|
512 |
},
|
513 |
{
|
514 |
"model": "deepseek/deepseek-chat",
|
515 |
-
"bleu": 0.
|
|
|
516 |
},
|
517 |
{
|
518 |
"model": "microsoft/phi-4",
|
519 |
-
"bleu": 0.
|
|
|
520 |
}
|
521 |
],
|
522 |
-
"bleu": 0.
|
|
|
523 |
"commonvoice_hours": 2.3,
|
524 |
"commonvoice_locale": "pa-IN",
|
525 |
"population": {
|
@@ -538,10 +563,12 @@
|
|
538 |
"scores": [
|
539 |
{
|
540 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
541 |
-
"bleu": 0.
|
|
|
542 |
}
|
543 |
],
|
544 |
-
"bleu": 0.
|
|
|
545 |
"commonvoice_hours": 241.0,
|
546 |
"commonvoice_locale": "ru",
|
547 |
"population": {
|
@@ -577,10 +604,12 @@
|
|
577 |
"scores": [
|
578 |
{
|
579 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
580 |
-
"bleu": 0.
|
|
|
581 |
}
|
582 |
],
|
583 |
-
"bleu": 0.
|
|
|
584 |
"commonvoice_hours": 411.0,
|
585 |
"commonvoice_locale": "sw",
|
586 |
"population": {
|
@@ -602,10 +631,12 @@
|
|
602 |
"scores": [
|
603 |
{
|
604 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
605 |
-
"bleu": 0.
|
|
|
606 |
}
|
607 |
],
|
608 |
-
"bleu": 0.
|
|
|
609 |
"commonvoice_hours": 33.0,
|
610 |
"commonvoice_locale": "id",
|
611 |
"population": {
|
@@ -620,10 +651,12 @@
|
|
620 |
"scores": [
|
621 |
{
|
622 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
623 |
-
"bleu": 0.
|
|
|
624 |
}
|
625 |
],
|
626 |
-
"bleu": 0.
|
|
|
627 |
"commonvoice_hours": 1357.0,
|
628 |
"commonvoice_locale": "de",
|
629 |
"population": {
|
@@ -663,10 +696,12 @@
|
|
663 |
"scores": [
|
664 |
{
|
665 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
666 |
-
"bleu": 0.
|
|
|
667 |
}
|
668 |
],
|
669 |
-
"bleu": 0.
|
|
|
670 |
"commonvoice_hours": 222.0,
|
671 |
"commonvoice_locale": "ja",
|
672 |
"population": {
|
@@ -682,30 +717,37 @@
|
|
682 |
"scores": [
|
683 |
{
|
684 |
"model": "openai/gpt-4o-mini",
|
685 |
-
"bleu": 0.28964452051612244
|
|
|
686 |
},
|
687 |
{
|
688 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
689 |
-
"bleu": 0.
|
|
|
690 |
},
|
691 |
{
|
692 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
693 |
-
"bleu": 0.1314237858560668
|
|
|
694 |
},
|
695 |
{
|
696 |
"model": "google/gemini-2.0-flash-001",
|
697 |
-
"bleu": 0.35187073123584545
|
|
|
698 |
},
|
699 |
{
|
700 |
"model": "deepseek/deepseek-chat",
|
701 |
-
"bleu": 0.2808664068178743
|
|
|
702 |
},
|
703 |
{
|
704 |
"model": "microsoft/phi-4",
|
705 |
-
"bleu": 0.16468103557770178
|
|
|
706 |
}
|
707 |
],
|
708 |
-
"bleu": 0.
|
|
|
709 |
"commonvoice_hours": 0.3,
|
710 |
"commonvoice_locale": "te",
|
711 |
"population": {
|
@@ -719,30 +761,37 @@
|
|
719 |
"scores": [
|
720 |
{
|
721 |
"model": "openai/gpt-4o-mini",
|
722 |
-
"bleu": 0.235200323237626
|
|
|
723 |
},
|
724 |
{
|
725 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
726 |
-
"bleu": 0.
|
|
|
727 |
},
|
728 |
{
|
729 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
730 |
-
"bleu": 0.1158656438579424
|
|
|
731 |
},
|
732 |
{
|
733 |
"model": "google/gemini-2.0-flash-001",
|
734 |
-
"bleu": 0.3039098126596327
|
|
|
735 |
},
|
736 |
{
|
737 |
"model": "deepseek/deepseek-chat",
|
738 |
-
"bleu": 0.23702154369195902
|
|
|
739 |
},
|
740 |
{
|
741 |
"model": "microsoft/phi-4",
|
742 |
-
"bleu": 0.14770612974379574
|
|
|
743 |
}
|
744 |
],
|
745 |
-
"bleu": 0.
|
|
|
746 |
"commonvoice_hours": 20.0,
|
747 |
"commonvoice_locale": "mr",
|
748 |
"population": {
|
@@ -756,10 +805,12 @@
|
|
756 |
"scores": [
|
757 |
{
|
758 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
759 |
-
"bleu": 0.
|
|
|
760 |
}
|
761 |
],
|
762 |
-
"bleu": 0.
|
|
|
763 |
"commonvoice_hours": 0.0,
|
764 |
"commonvoice_locale": "jv",
|
765 |
"population": {
|
@@ -774,30 +825,37 @@
|
|
774 |
"scores": [
|
775 |
{
|
776 |
"model": "openai/gpt-4o-mini",
|
777 |
-
"bleu": 0.2790022403255029
|
|
|
778 |
},
|
779 |
{
|
780 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
781 |
-
"bleu": 0.
|
|
|
782 |
},
|
783 |
{
|
784 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
785 |
-
"bleu": 0.17142561681893811
|
|
|
786 |
},
|
787 |
{
|
788 |
"model": "google/gemini-2.0-flash-001",
|
789 |
-
"bleu": 0.32076560886563743
|
|
|
790 |
},
|
791 |
{
|
792 |
"model": "deepseek/deepseek-chat",
|
793 |
-
"bleu": 0.269842412561934
|
|
|
794 |
},
|
795 |
{
|
796 |
"model": "microsoft/phi-4",
|
797 |
-
"bleu": 0.19118351096728373
|
|
|
798 |
}
|
799 |
],
|
800 |
-
"bleu": 0.
|
|
|
801 |
"commonvoice_hours": 5.9,
|
802 |
"commonvoice_locale": "vi",
|
803 |
"population": {
|
@@ -814,30 +872,37 @@
|
|
814 |
"scores": [
|
815 |
{
|
816 |
"model": "openai/gpt-4o-mini",
|
817 |
-
"bleu": 0.2159676106476219
|
|
|
818 |
},
|
819 |
{
|
820 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
821 |
-
"bleu": 0.
|
|
|
822 |
},
|
823 |
{
|
824 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
825 |
-
"bleu": 0.11055269618146167
|
|
|
826 |
},
|
827 |
{
|
828 |
"model": "google/gemini-2.0-flash-001",
|
829 |
-
"bleu": 0.2993653070835946
|
|
|
830 |
},
|
831 |
{
|
832 |
"model": "deepseek/deepseek-chat",
|
833 |
-
"bleu": 0.22772498517043588
|
|
|
834 |
},
|
835 |
{
|
836 |
"model": "microsoft/phi-4",
|
837 |
-
"bleu": 0.14949134449145374
|
|
|
838 |
}
|
839 |
],
|
840 |
-
"bleu": 0.
|
|
|
841 |
"commonvoice_hours": 234.0,
|
842 |
"commonvoice_locale": "ta",
|
843 |
"population": {
|
@@ -858,10 +923,12 @@
|
|
858 |
"scores": [
|
859 |
{
|
860 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
861 |
-
"bleu": 0.
|
|
|
862 |
}
|
863 |
],
|
864 |
-
"bleu": 0.
|
|
|
865 |
"commonvoice_hours": 370.0,
|
866 |
"commonvoice_locale": "fa",
|
867 |
"population": {
|
@@ -883,10 +950,12 @@
|
|
883 |
"scores": [
|
884 |
{
|
885 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
886 |
-
"bleu": 0.
|
|
|
887 |
}
|
888 |
],
|
889 |
-
"bleu": 0.
|
|
|
890 |
"commonvoice_hours": 127.0,
|
891 |
"commonvoice_locale": "tr",
|
892 |
"population": {
|
@@ -911,10 +980,12 @@
|
|
911 |
"scores": [
|
912 |
{
|
913 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
914 |
-
"bleu": 0.
|
|
|
915 |
}
|
916 |
],
|
917 |
-
"bleu": 0.
|
|
|
918 |
"commonvoice_hours": 203.0,
|
919 |
"commonvoice_locale": "yue",
|
920 |
"population": {
|
@@ -930,10 +1001,12 @@
|
|
930 |
"scores": [
|
931 |
{
|
932 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
933 |
-
"bleu": 0.
|
|
|
934 |
}
|
935 |
],
|
936 |
-
"bleu": 0.
|
|
|
937 |
"commonvoice_hours": 1.7,
|
938 |
"commonvoice_locale": "ko",
|
939 |
"population": {
|
@@ -953,30 +1026,37 @@
|
|
953 |
"scores": [
|
954 |
{
|
955 |
"model": "openai/gpt-4o-mini",
|
956 |
-
"bleu": 0.29744196180619636
|
|
|
957 |
},
|
958 |
{
|
959 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
960 |
-
"bleu": 0.
|
|
|
961 |
},
|
962 |
{
|
963 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
964 |
-
"bleu": 0.26709213193768344
|
|
|
965 |
},
|
966 |
{
|
967 |
"model": "google/gemini-2.0-flash-001",
|
968 |
-
"bleu": 0.34518602347709243
|
|
|
969 |
},
|
970 |
{
|
971 |
"model": "deepseek/deepseek-chat",
|
972 |
-
"bleu": 0.3136120219290237
|
|
|
973 |
},
|
974 |
{
|
975 |
"model": "microsoft/phi-4",
|
976 |
-
"bleu": 0.26629405288011837
|
|
|
977 |
}
|
978 |
],
|
979 |
-
"bleu": 0.
|
|
|
980 |
"commonvoice_hours": 362.0,
|
981 |
"commonvoice_locale": "it",
|
982 |
"population": {
|
@@ -1004,10 +1084,12 @@
|
|
1004 |
"scores": [
|
1005 |
{
|
1006 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1007 |
-
"bleu": 0.
|
|
|
1008 |
}
|
1009 |
],
|
1010 |
-
"bleu": 0.
|
|
|
1011 |
"commonvoice_hours": 0.0,
|
1012 |
"commonvoice_locale": "tl",
|
1013 |
"population": {
|
@@ -1023,10 +1105,12 @@
|
|
1023 |
"scores": [
|
1024 |
{
|
1025 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1026 |
-
"bleu": 0.
|
|
|
1027 |
}
|
1028 |
],
|
1029 |
-
"bleu": 0.
|
|
|
1030 |
"commonvoice_hours": null,
|
1031 |
"commonvoice_locale": null,
|
1032 |
"population": {
|
@@ -1040,10 +1124,12 @@
|
|
1040 |
"scores": [
|
1041 |
{
|
1042 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1043 |
-
"bleu": 0.
|
|
|
1044 |
}
|
1045 |
],
|
1046 |
-
"bleu": 0.
|
|
|
1047 |
"commonvoice_hours": 0.0,
|
1048 |
"commonvoice_locale": "gu-IN",
|
1049 |
"population": {
|
@@ -1060,10 +1146,12 @@
|
|
1060 |
"scores": [
|
1061 |
{
|
1062 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1063 |
-
"bleu": 0.2461561900137243
|
|
|
1064 |
}
|
1065 |
],
|
1066 |
"bleu": 0.2461561900137243,
|
|
|
1067 |
"commonvoice_hours": 172.0,
|
1068 |
"commonvoice_locale": "th",
|
1069 |
"population": {
|
@@ -1077,10 +1165,12 @@
|
|
1077 |
"scores": [
|
1078 |
{
|
1079 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1080 |
-
"bleu": 0.25650866519447973
|
|
|
1081 |
}
|
1082 |
],
|
1083 |
"bleu": 0.25650866519447973,
|
|
|
1084 |
"commonvoice_hours": 0.0,
|
1085 |
"commonvoice_locale": "kn",
|
1086 |
"population": {
|
@@ -1094,30 +1184,37 @@
|
|
1094 |
"scores": [
|
1095 |
{
|
1096 |
"model": "openai/gpt-4o-mini",
|
1097 |
-
"bleu": 0.23073727076678055
|
|
|
1098 |
},
|
1099 |
{
|
1100 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1101 |
-
"bleu": 0.21782657144614825
|
|
|
1102 |
},
|
1103 |
{
|
1104 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
1105 |
-
"bleu": 0.1695641998407403
|
|
|
1106 |
},
|
1107 |
{
|
1108 |
"model": "google/gemini-2.0-flash-001",
|
1109 |
-
"bleu": 0.3195014249623395
|
|
|
1110 |
},
|
1111 |
{
|
1112 |
"model": "deepseek/deepseek-chat",
|
1113 |
-
"bleu": 0.2633223158501049
|
|
|
1114 |
},
|
1115 |
{
|
1116 |
"model": "microsoft/phi-4",
|
1117 |
-
"bleu": 0.19162873119255258
|
|
|
1118 |
}
|
1119 |
],
|
1120 |
"bleu": 0.23209675234311103,
|
|
|
1121 |
"commonvoice_hours": 2.8,
|
1122 |
"commonvoice_locale": "ml",
|
1123 |
"population": {
|
@@ -1137,10 +1234,12 @@
|
|
1137 |
"scores": [
|
1138 |
{
|
1139 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1140 |
-
"bleu": 0.2616054244059909
|
|
|
1141 |
}
|
1142 |
],
|
1143 |
"bleu": 0.2616054244059909,
|
|
|
1144 |
"commonvoice_hours": 2.8,
|
1145 |
"commonvoice_locale": "or",
|
1146 |
"population": {
|
@@ -1154,10 +1253,12 @@
|
|
1154 |
"scores": [
|
1155 |
{
|
1156 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1157 |
-
"bleu": 0.24382878885531348
|
|
|
1158 |
}
|
1159 |
],
|
1160 |
"bleu": 0.24382878885531348,
|
|
|
1161 |
"commonvoice_hours": 174.0,
|
1162 |
"commonvoice_locale": "pl",
|
1163 |
"population": {
|
@@ -1179,10 +1280,12 @@
|
|
1179 |
"scores": [
|
1180 |
{
|
1181 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1182 |
-
"bleu": 0.1493358875548207
|
|
|
1183 |
}
|
1184 |
],
|
1185 |
"bleu": 0.1493358875548207,
|
|
|
1186 |
"commonvoice_hours": 4.1,
|
1187 |
"commonvoice_locale": "ha",
|
1188 |
"population": {
|
@@ -1200,10 +1303,12 @@
|
|
1200 |
"scores": [
|
1201 |
{
|
1202 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1203 |
-
"bleu": 0.22524971121549384
|
|
|
1204 |
}
|
1205 |
],
|
1206 |
"bleu": 0.22524971121549384,
|
|
|
1207 |
"commonvoice_hours": 0.4,
|
1208 |
"commonvoice_locale": "sd",
|
1209 |
"population": {
|
@@ -1218,30 +1323,37 @@
|
|
1218 |
"scores": [
|
1219 |
{
|
1220 |
"model": "openai/gpt-4o-mini",
|
1221 |
-
"bleu": 0.27545115634664297
|
|
|
1222 |
},
|
1223 |
{
|
1224 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1225 |
-
"bleu": 0.2445459295400275
|
|
|
1226 |
},
|
1227 |
{
|
1228 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
1229 |
-
"bleu": 0.23380594556884363
|
|
|
1230 |
},
|
1231 |
{
|
1232 |
"model": "google/gemini-2.0-flash-001",
|
1233 |
-
"bleu": 0.3521510571182875
|
|
|
1234 |
},
|
1235 |
{
|
1236 |
"model": "deepseek/deepseek-chat",
|
1237 |
-
"bleu": 0.2984537737499322
|
|
|
1238 |
},
|
1239 |
{
|
1240 |
"model": "microsoft/phi-4",
|
1241 |
-
"bleu": 0.20974647653543713
|
|
|
1242 |
}
|
1243 |
],
|
1244 |
"bleu": 0.2690257231431951,
|
|
|
1245 |
"commonvoice_hours": 0.0,
|
1246 |
"commonvoice_locale": "ms",
|
1247 |
"population": {
|
@@ -1259,10 +1371,12 @@
|
|
1259 |
"scores": [
|
1260 |
{
|
1261 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1262 |
-
"bleu": 0.17529594258449108
|
|
|
1263 |
}
|
1264 |
],
|
1265 |
"bleu": 0.17529594258449108,
|
|
|
1266 |
"commonvoice_hours": 0.0,
|
1267 |
"commonvoice_locale": "my",
|
1268 |
"population": {
|
@@ -1277,10 +1391,12 @@
|
|
1277 |
"scores": [
|
1278 |
{
|
1279 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1280 |
-
"bleu": 0.16453710162389373
|
|
|
1281 |
}
|
1282 |
],
|
1283 |
"bleu": 0.16453710162389373,
|
|
|
1284 |
"commonvoice_hours": 1.8,
|
1285 |
"commonvoice_locale": "am",
|
1286 |
"population": {
|
@@ -1295,10 +1411,12 @@
|
|
1295 |
"scores": [
|
1296 |
{
|
1297 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1298 |
-
"bleu": 0.0691897827221633
|
|
|
1299 |
}
|
1300 |
],
|
1301 |
"bleu": 0.0691897827221633,
|
|
|
1302 |
"commonvoice_hours": 0.0,
|
1303 |
"commonvoice_locale": "om",
|
1304 |
"population": {
|
@@ -1314,10 +1432,12 @@
|
|
1314 |
"scores": [
|
1315 |
{
|
1316 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1317 |
-
"bleu": 0.23176648838308359
|
|
|
1318 |
}
|
1319 |
],
|
1320 |
"bleu": 0.23176648838308359,
|
|
|
1321 |
"commonvoice_hours": null,
|
1322 |
"commonvoice_locale": null,
|
1323 |
"population": {
|
@@ -1333,10 +1453,12 @@
|
|
1333 |
"scores": [
|
1334 |
{
|
1335 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1336 |
-
"bleu": 0.2038544554531401
|
|
|
1337 |
}
|
1338 |
],
|
1339 |
"bleu": 0.2038544554531401,
|
|
|
1340 |
"commonvoice_hours": 100.0,
|
1341 |
"commonvoice_locale": "uz",
|
1342 |
"population": {
|
@@ -1354,10 +1476,12 @@
|
|
1354 |
"scores": [
|
1355 |
{
|
1356 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1357 |
-
"bleu": 0.1911853993562902
|
|
|
1358 |
}
|
1359 |
],
|
1360 |
"bleu": 0.1911853993562902,
|
|
|
1361 |
"commonvoice_hours": 0.5,
|
1362 |
"commonvoice_locale": "az",
|
1363 |
"population": {
|
@@ -1376,30 +1500,37 @@
|
|
1376 |
"scores": [
|
1377 |
{
|
1378 |
"model": "openai/gpt-4o-mini",
|
1379 |
-
"bleu": 0.18638464691782505
|
|
|
1380 |
},
|
1381 |
{
|
1382 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1383 |
-
"bleu": 0.22413489641063433
|
|
|
1384 |
},
|
1385 |
{
|
1386 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
1387 |
-
"bleu": 0.12396443500389862
|
|
|
1388 |
},
|
1389 |
{
|
1390 |
"model": "google/gemini-2.0-flash-001",
|
1391 |
-
"bleu": 0.31100961611618916
|
|
|
1392 |
},
|
1393 |
{
|
1394 |
"model": "deepseek/deepseek-chat",
|
1395 |
-
"bleu": 0.23467068441612768
|
|
|
1396 |
},
|
1397 |
{
|
1398 |
"model": "microsoft/phi-4",
|
1399 |
-
"bleu": 0.1315217916431994
|
|
|
1400 |
}
|
1401 |
],
|
1402 |
"bleu": 0.20194767841797903,
|
|
|
1403 |
"commonvoice_hours": null,
|
1404 |
"commonvoice_locale": null,
|
1405 |
"population": {
|
@@ -1413,10 +1544,12 @@
|
|
1413 |
"scores": [
|
1414 |
{
|
1415 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1416 |
-
"bleu": 0.2592795402705898
|
|
|
1417 |
}
|
1418 |
],
|
1419 |
"bleu": 0.2592795402705898,
|
|
|
1420 |
"commonvoice_hours": 114.0,
|
1421 |
"commonvoice_locale": "nl",
|
1422 |
"population": {
|
@@ -1439,10 +1572,12 @@
|
|
1439 |
"scores": [
|
1440 |
{
|
1441 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1442 |
-
"bleu": 0.1795140543637709
|
|
|
1443 |
}
|
1444 |
],
|
1445 |
"bleu": 0.1795140543637709,
|
|
|
1446 |
"commonvoice_hours": null,
|
1447 |
"commonvoice_locale": null,
|
1448 |
"population": {
|
@@ -1456,30 +1591,37 @@
|
|
1456 |
"scores": [
|
1457 |
{
|
1458 |
"model": "openai/gpt-4o-mini",
|
1459 |
-
"bleu": 0.2564463888571809
|
|
|
1460 |
},
|
1461 |
{
|
1462 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1463 |
-
"bleu": 0.2922812040972885
|
|
|
1464 |
},
|
1465 |
{
|
1466 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
1467 |
-
"bleu": 0.24225796102393954
|
|
|
1468 |
},
|
1469 |
{
|
1470 |
"model": "google/gemini-2.0-flash-001",
|
1471 |
-
"bleu": 0.3452563778145038
|
|
|
1472 |
},
|
1473 |
{
|
1474 |
"model": "deepseek/deepseek-chat",
|
1475 |
-
"bleu": 0.3292127494173498
|
|
|
1476 |
},
|
1477 |
{
|
1478 |
"model": "microsoft/phi-4",
|
1479 |
-
"bleu": 0.2452825737163755
|
|
|
1480 |
}
|
1481 |
],
|
1482 |
"bleu": 0.28512287582110635,
|
|
|
1483 |
"commonvoice_hours": 98.0,
|
1484 |
"commonvoice_locale": "uk",
|
1485 |
"population": {
|
@@ -1498,10 +1640,12 @@
|
|
1498 |
"scores": [
|
1499 |
{
|
1500 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1501 |
-
"bleu": 0.09852676389614487
|
|
|
1502 |
}
|
1503 |
],
|
1504 |
"bleu": 0.09852676389614487,
|
|
|
1505 |
"commonvoice_hours": 5.9,
|
1506 |
"commonvoice_locale": "yo",
|
1507 |
"population": {
|
@@ -1516,10 +1660,12 @@
|
|
1516 |
"scores": [
|
1517 |
{
|
1518 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1519 |
-
"bleu": 0.1549827013842116
|
|
|
1520 |
}
|
1521 |
],
|
1522 |
"bleu": 0.1549827013842116,
|
|
|
1523 |
"commonvoice_hours": 0.0,
|
1524 |
"commonvoice_locale": "ig",
|
1525 |
"population": {
|
@@ -1533,10 +1679,12 @@
|
|
1533 |
"scores": [
|
1534 |
{
|
1535 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1536 |
-
"bleu": 0.27783470672988303
|
|
|
1537 |
}
|
1538 |
],
|
1539 |
"bleu": 0.27783470672988303,
|
|
|
1540 |
"commonvoice_hours": null,
|
1541 |
"commonvoice_locale": null,
|
1542 |
"population": {
|
@@ -1550,10 +1698,12 @@
|
|
1550 |
"scores": [
|
1551 |
{
|
1552 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1553 |
-
"bleu": 0.2554810263222905
|
|
|
1554 |
}
|
1555 |
],
|
1556 |
"bleu": 0.2554810263222905,
|
|
|
1557 |
"commonvoice_hours": null,
|
1558 |
"commonvoice_locale": null,
|
1559 |
"population": {
|
@@ -1568,10 +1718,12 @@
|
|
1568 |
"scores": [
|
1569 |
{
|
1570 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1571 |
-
"bleu": 0.15163299980391426
|
|
|
1572 |
}
|
1573 |
],
|
1574 |
"bleu": 0.15163299980391426,
|
|
|
1575 |
"commonvoice_hours": 0.0,
|
1576 |
"commonvoice_locale": "mg",
|
1577 |
"population": {
|
@@ -1585,30 +1737,37 @@
|
|
1585 |
"scores": [
|
1586 |
{
|
1587 |
"model": "openai/gpt-4o-mini",
|
1588 |
-
"bleu": 0.33899025568959984
|
|
|
1589 |
},
|
1590 |
{
|
1591 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1592 |
-
"bleu": 0.26666997541189236
|
|
|
1593 |
},
|
1594 |
{
|
1595 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
1596 |
-
"bleu": 0.24172488724041316
|
|
|
1597 |
},
|
1598 |
{
|
1599 |
"model": "google/gemini-2.0-flash-001",
|
1600 |
-
"bleu": 0.37365302832845815
|
|
|
1601 |
},
|
1602 |
{
|
1603 |
"model": "deepseek/deepseek-chat",
|
1604 |
-
"bleu": 0.332600965807992
|
|
|
1605 |
},
|
1606 |
{
|
1607 |
"model": "microsoft/phi-4",
|
1608 |
-
"bleu": 0.2510789925018768
|
|
|
1609 |
}
|
1610 |
],
|
1611 |
"bleu": 0.30078635083003874,
|
|
|
1612 |
"commonvoice_hours": 21.0,
|
1613 |
"commonvoice_locale": "ro",
|
1614 |
"population": {
|
@@ -1628,10 +1787,12 @@
|
|
1628 |
"scores": [
|
1629 |
{
|
1630 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1631 |
-
"bleu": 0.26199282928489126
|
|
|
1632 |
}
|
1633 |
],
|
1634 |
"bleu": 0.26199282928489126,
|
|
|
1635 |
"commonvoice_hours": 1.3,
|
1636 |
"commonvoice_locale": "ne-NP",
|
1637 |
"population": {
|
@@ -1647,10 +1808,12 @@
|
|
1647 |
"scores": [
|
1648 |
{
|
1649 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1650 |
-
"bleu": 0.23975507119180453
|
|
|
1651 |
}
|
1652 |
],
|
1653 |
"bleu": 0.23975507119180453,
|
|
|
1654 |
"commonvoice_hours": 0.0,
|
1655 |
"commonvoice_locale": "mai",
|
1656 |
"population": {
|
@@ -1665,10 +1828,12 @@
|
|
1665 |
"scores": [
|
1666 |
{
|
1667 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1668 |
-
"bleu": 0.19363225565136952
|
|
|
1669 |
}
|
1670 |
],
|
1671 |
"bleu": 0.19363225565136952,
|
|
|
1672 |
"commonvoice_hours": 2.8,
|
1673 |
"commonvoice_locale": "as",
|
1674 |
"population": {
|
@@ -1682,10 +1847,12 @@
|
|
1682 |
"scores": [
|
1683 |
{
|
1684 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1685 |
-
"bleu": 0.09504458945778768
|
|
|
1686 |
}
|
1687 |
],
|
1688 |
"bleu": 0.09504458945778768,
|
|
|
1689 |
"commonvoice_hours": 0.0,
|
1690 |
"commonvoice_locale": "ny",
|
1691 |
"population": {
|
@@ -1702,30 +1869,37 @@
|
|
1702 |
"scores": [
|
1703 |
{
|
1704 |
"model": "openai/gpt-4o-mini",
|
1705 |
-
"bleu": 0.2024994684991584
|
|
|
1706 |
},
|
1707 |
{
|
1708 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1709 |
-
"bleu": 0.1532133716194419
|
|
|
1710 |
},
|
1711 |
{
|
1712 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
1713 |
-
"bleu": 0.043408496427191995
|
|
|
1714 |
},
|
1715 |
{
|
1716 |
"model": "google/gemini-2.0-flash-001",
|
1717 |
-
"bleu": 0.3048371831537258
|
|
|
1718 |
},
|
1719 |
{
|
1720 |
"model": "deepseek/deepseek-chat",
|
1721 |
-
"bleu": 0.21360545410615966
|
|
|
1722 |
},
|
1723 |
{
|
1724 |
"model": "microsoft/phi-4",
|
1725 |
-
"bleu": 0.06484340154849859
|
|
|
1726 |
}
|
1727 |
],
|
1728 |
"bleu": 0.16373456255902938,
|
|
|
1729 |
"commonvoice_hours": 0.0,
|
1730 |
"commonvoice_locale": "so",
|
1731 |
"population": {
|
@@ -1744,10 +1918,12 @@
|
|
1744 |
"scores": [
|
1745 |
{
|
1746 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1747 |
-
"bleu": 0.29925558767802407
|
|
|
1748 |
}
|
1749 |
],
|
1750 |
"bleu": 0.29925558767802407,
|
|
|
1751 |
"commonvoice_hours": null,
|
1752 |
"commonvoice_locale": null,
|
1753 |
"population": {
|
@@ -1761,10 +1937,12 @@
|
|
1761 |
"scores": [
|
1762 |
{
|
1763 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1764 |
-
"bleu": 0.26029402164210574
|
|
|
1765 |
}
|
1766 |
],
|
1767 |
"bleu": 0.26029402164210574,
|
|
|
1768 |
"commonvoice_hours": 7.4,
|
1769 |
"commonvoice_locale": "sr",
|
1770 |
"population": {
|
@@ -1785,10 +1963,12 @@
|
|
1785 |
"scores": [
|
1786 |
{
|
1787 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1788 |
-
"bleu": 0.20259734060180434
|
|
|
1789 |
}
|
1790 |
],
|
1791 |
"bleu": 0.20259734060180434,
|
|
|
1792 |
"commonvoice_hours": 0.0,
|
1793 |
"commonvoice_locale": "si",
|
1794 |
"population": {
|
@@ -1802,30 +1982,37 @@
|
|
1802 |
"scores": [
|
1803 |
{
|
1804 |
"model": "openai/gpt-4o-mini",
|
1805 |
-
"bleu": 0.21699232146684352
|
|
|
1806 |
},
|
1807 |
{
|
1808 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1809 |
-
"bleu": 0.21417349432612984
|
|
|
1810 |
},
|
1811 |
{
|
1812 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
1813 |
-
"bleu": 0.03287369352293625
|
|
|
1814 |
},
|
1815 |
{
|
1816 |
"model": "google/gemini-2.0-flash-001",
|
1817 |
-
"bleu": 0.34264229339556035
|
|
|
1818 |
},
|
1819 |
{
|
1820 |
"model": "deepseek/deepseek-chat",
|
1821 |
-
"bleu": 0.24630515818736093
|
|
|
1822 |
},
|
1823 |
{
|
1824 |
"model": "microsoft/phi-4",
|
1825 |
-
"bleu": 0.11830648687368288
|
|
|
1826 |
}
|
1827 |
],
|
1828 |
"bleu": 0.1952155746287523,
|
|
|
1829 |
"commonvoice_hours": 0.0,
|
1830 |
"commonvoice_locale": "km",
|
1831 |
"population": {
|
@@ -1839,10 +2026,12 @@
|
|
1839 |
"scores": [
|
1840 |
{
|
1841 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1842 |
-
"bleu": 0.2212498883000727
|
|
|
1843 |
}
|
1844 |
],
|
1845 |
"bleu": 0.2212498883000727,
|
|
|
1846 |
"commonvoice_hours": null,
|
1847 |
"commonvoice_locale": null,
|
1848 |
"population": {
|
@@ -1856,10 +2045,12 @@
|
|
1856 |
"scores": [
|
1857 |
{
|
1858 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1859 |
-
"bleu": 0.08190470208193343
|
|
|
1860 |
}
|
1861 |
],
|
1862 |
"bleu": 0.08190470208193343,
|
|
|
1863 |
"commonvoice_hours": null,
|
1864 |
"commonvoice_locale": null,
|
1865 |
"population": {
|
@@ -1873,10 +2064,12 @@
|
|
1873 |
"scores": [
|
1874 |
{
|
1875 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1876 |
-
"bleu": 0.15449146502209737
|
|
|
1877 |
}
|
1878 |
],
|
1879 |
"bleu": 0.15449146502209737,
|
|
|
1880 |
"commonvoice_hours": 0.0,
|
1881 |
"commonvoice_locale": "zu",
|
1882 |
"population": {
|
@@ -1894,10 +2087,12 @@
|
|
1894 |
"scores": [
|
1895 |
{
|
1896 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1897 |
-
"bleu": 0.2392246097188628
|
|
|
1898 |
}
|
1899 |
],
|
1900 |
"bleu": 0.2392246097188628,
|
|
|
1901 |
"commonvoice_hours": 2.1,
|
1902 |
"commonvoice_locale": "kk",
|
1903 |
"population": {
|
@@ -1916,10 +2111,12 @@
|
|
1916 |
"scores": [
|
1917 |
{
|
1918 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1919 |
-
"bleu": 0.2844520855192069
|
|
|
1920 |
}
|
1921 |
],
|
1922 |
"bleu": 0.2844520855192069,
|
|
|
1923 |
"commonvoice_hours": 74.0,
|
1924 |
"commonvoice_locale": "cs",
|
1925 |
"population": {
|
@@ -1934,10 +2131,12 @@
|
|
1934 |
"scores": [
|
1935 |
{
|
1936 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1937 |
-
"bleu": 0.31838456223051165
|
|
|
1938 |
}
|
1939 |
],
|
1940 |
"bleu": 0.31838456223051165,
|
|
|
1941 |
"commonvoice_hours": 47.0,
|
1942 |
"commonvoice_locale": "sv-SE",
|
1943 |
"population": {
|
@@ -1954,10 +2153,12 @@
|
|
1954 |
"scores": [
|
1955 |
{
|
1956 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1957 |
-
"bleu": 0.2517614908428288
|
|
|
1958 |
}
|
1959 |
],
|
1960 |
"bleu": 0.2517614908428288,
|
|
|
1961 |
"commonvoice_hours": 92.0,
|
1962 |
"commonvoice_locale": "hu",
|
1963 |
"population": {
|
@@ -1979,30 +2180,37 @@
|
|
1979 |
"scores": [
|
1980 |
{
|
1981 |
"model": "openai/gpt-4o-mini",
|
1982 |
-
"bleu": 0.24888370153898132
|
|
|
1983 |
},
|
1984 |
{
|
1985 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1986 |
-
"bleu": 0.27269196827838943
|
|
|
1987 |
},
|
1988 |
{
|
1989 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
1990 |
-
"bleu": 0.21351544070708506
|
|
|
1991 |
},
|
1992 |
{
|
1993 |
"model": "google/gemini-2.0-flash-001",
|
1994 |
-
"bleu": 0.3500489758234636
|
|
|
1995 |
},
|
1996 |
{
|
1997 |
"model": "deepseek/deepseek-chat",
|
1998 |
-
"bleu": 0.32858632704534785
|
|
|
1999 |
},
|
2000 |
{
|
2001 |
"model": "microsoft/phi-4",
|
2002 |
-
"bleu": 0.1903000734693107
|
|
|
2003 |
}
|
2004 |
],
|
2005 |
"bleu": 0.2673377478104297,
|
|
|
2006 |
"commonvoice_hours": 20.0,
|
2007 |
"commonvoice_locale": "el",
|
2008 |
"population": {
|
@@ -2025,30 +2233,37 @@
|
|
2025 |
"scores": [
|
2026 |
{
|
2027 |
"model": "openai/gpt-4o-mini",
|
2028 |
-
"bleu": 0.10438047654339373
|
|
|
2029 |
},
|
2030 |
{
|
2031 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2032 |
-
"bleu": 0.1054140213254438
|
|
|
2033 |
},
|
2034 |
{
|
2035 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
2036 |
-
"bleu": 0.049580893458705456
|
|
|
2037 |
},
|
2038 |
{
|
2039 |
"model": "google/gemini-2.0-flash-001",
|
2040 |
-
"bleu": 0.20979752102494492
|
|
|
2041 |
},
|
2042 |
{
|
2043 |
"model": "deepseek/deepseek-chat",
|
2044 |
-
"bleu": 0.14066476436038525
|
|
|
2045 |
},
|
2046 |
{
|
2047 |
"model": "microsoft/phi-4",
|
2048 |
-
"bleu": 0.060530921002659346
|
|
|
2049 |
}
|
2050 |
],
|
2051 |
"bleu": 0.11172809961925541,
|
|
|
2052 |
"commonvoice_hours": null,
|
2053 |
"commonvoice_locale": null,
|
2054 |
"population": {
|
@@ -2062,10 +2277,12 @@
|
|
2062 |
"scores": [
|
2063 |
{
|
2064 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2065 |
-
"bleu": 0.20654412682006296
|
|
|
2066 |
}
|
2067 |
],
|
2068 |
"bleu": 0.20654412682006296,
|
|
|
2069 |
"commonvoice_hours": 135.0,
|
2070 |
"commonvoice_locale": "ckb",
|
2071 |
"population": {
|
@@ -2080,10 +2297,12 @@
|
|
2080 |
"scores": [
|
2081 |
{
|
2082 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2083 |
-
"bleu": 0.14006909985587948
|
|
|
2084 |
}
|
2085 |
],
|
2086 |
"bleu": 0.14006909985587948,
|
|
|
2087 |
"commonvoice_hours": 2002.0,
|
2088 |
"commonvoice_locale": "rw",
|
2089 |
"population": {
|
@@ -2099,10 +2318,12 @@
|
|
2099 |
"scores": [
|
2100 |
{
|
2101 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2102 |
-
"bleu": 0.08408628490585719
|
|
|
2103 |
}
|
2104 |
],
|
2105 |
"bleu": 0.08408628490585719,
|
|
|
2106 |
"commonvoice_hours": 0.0,
|
2107 |
"commonvoice_locale": "wo",
|
2108 |
"population": {
|
@@ -2117,10 +2338,12 @@
|
|
2117 |
"scores": [
|
2118 |
{
|
2119 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2120 |
-
"bleu": 0.23738824104522893
|
|
|
2121 |
}
|
2122 |
],
|
2123 |
"bleu": 0.23738824104522893,
|
|
|
2124 |
"commonvoice_hours": null,
|
2125 |
"commonvoice_locale": null,
|
2126 |
"population": {
|
@@ -2134,10 +2357,12 @@
|
|
2134 |
"scores": [
|
2135 |
{
|
2136 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2137 |
-
"bleu": 0.20685666710862224
|
|
|
2138 |
}
|
2139 |
],
|
2140 |
"bleu": 0.20685666710862224,
|
|
|
2141 |
"commonvoice_hours": null,
|
2142 |
"commonvoice_locale": null,
|
2143 |
"population": {
|
@@ -2151,10 +2376,12 @@
|
|
2151 |
"scores": [
|
2152 |
{
|
2153 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2154 |
-
"bleu": 0.1143143326923908
|
|
|
2155 |
}
|
2156 |
],
|
2157 |
"bleu": 0.1143143326923908,
|
|
|
2158 |
"commonvoice_hours": 0.0,
|
2159 |
"commonvoice_locale": "xh",
|
2160 |
"population": {
|
@@ -2169,10 +2396,12 @@
|
|
2169 |
"scores": [
|
2170 |
{
|
2171 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2172 |
-
"bleu": 0.08532345270447181
|
|
|
2173 |
}
|
2174 |
],
|
2175 |
"bleu": 0.08532345270447181,
|
|
|
2176 |
"commonvoice_hours": 0.0,
|
2177 |
"commonvoice_locale": "ti",
|
2178 |
"population": {
|
@@ -2188,10 +2417,12 @@
|
|
2188 |
"scores": [
|
2189 |
{
|
2190 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2191 |
-
"bleu": 0.18341973561481445
|
|
|
2192 |
}
|
2193 |
],
|
2194 |
"bleu": 0.18341973561481445,
|
|
|
2195 |
"commonvoice_hours": 1804.0,
|
2196 |
"commonvoice_locale": "be",
|
2197 |
"population": {
|
@@ -2207,10 +2438,12 @@
|
|
2207 |
"scores": [
|
2208 |
{
|
2209 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2210 |
-
"bleu": 0.11581604983636683
|
|
|
2211 |
}
|
2212 |
],
|
2213 |
"bleu": 0.11581604983636683,
|
|
|
2214 |
"commonvoice_hours": null,
|
2215 |
"commonvoice_locale": null,
|
2216 |
"population": {
|
@@ -2224,10 +2457,12 @@
|
|
2224 |
"scores": [
|
2225 |
{
|
2226 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2227 |
-
"bleu": 0.1846236171638531
|
|
|
2228 |
}
|
2229 |
],
|
2230 |
"bleu": 0.1846236171638531,
|
|
|
2231 |
"commonvoice_hours": 0.0,
|
2232 |
"commonvoice_locale": "tg",
|
2233 |
"population": {
|
@@ -2242,10 +2477,12 @@
|
|
2242 |
"scores": [
|
2243 |
{
|
2244 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2245 |
-
"bleu": 0.05520341910203098
|
|
|
2246 |
}
|
2247 |
],
|
2248 |
"bleu": 0.05520341910203098,
|
|
|
2249 |
"commonvoice_hours": null,
|
2250 |
"commonvoice_locale": null,
|
2251 |
"population": {
|
@@ -2259,10 +2496,12 @@
|
|
2259 |
"scores": [
|
2260 |
{
|
2261 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2262 |
-
"bleu": 0.07227674667013836
|
|
|
2263 |
}
|
2264 |
],
|
2265 |
"bleu": 0.07227674667013836,
|
|
|
2266 |
"commonvoice_hours": 0.0,
|
2267 |
"commonvoice_locale": "bm",
|
2268 |
"population": {
|
@@ -2276,30 +2515,37 @@
|
|
2276 |
"scores": [
|
2277 |
{
|
2278 |
"model": "openai/gpt-4o-mini",
|
2279 |
-
"bleu": 0.3277177864074156
|
|
|
2280 |
},
|
2281 |
{
|
2282 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2283 |
-
"bleu": 0.31538459755111
|
|
|
2284 |
},
|
2285 |
{
|
2286 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
2287 |
-
"bleu": 0.26710030799119333
|
|
|
2288 |
},
|
2289 |
{
|
2290 |
"model": "google/gemini-2.0-flash-001",
|
2291 |
-
"bleu": 0.4361740814378139
|
|
|
2292 |
},
|
2293 |
{
|
2294 |
"model": "deepseek/deepseek-chat",
|
2295 |
-
"bleu": 0.37149647257024515
|
|
|
2296 |
},
|
2297 |
{
|
2298 |
"model": "microsoft/phi-4",
|
2299 |
-
"bleu": 0.2883662842075808
|
|
|
2300 |
}
|
2301 |
],
|
2302 |
"bleu": 0.3343732550275598,
|
|
|
2303 |
"commonvoice_hours": 0.5,
|
2304 |
"commonvoice_locale": "af",
|
2305 |
"population": {
|
@@ -2315,10 +2561,12 @@
|
|
2315 |
"scores": [
|
2316 |
{
|
2317 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2318 |
-
"bleu": 0.0883556207236924
|
|
|
2319 |
}
|
2320 |
],
|
2321 |
"bleu": 0.0883556207236924,
|
|
|
2322 |
"commonvoice_hours": 0.0,
|
2323 |
"commonvoice_locale": "ki",
|
2324 |
"population": {
|
@@ -2332,10 +2580,12 @@
|
|
2332 |
"scores": [
|
2333 |
{
|
2334 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2335 |
-
"bleu": 0.1872609836464467
|
|
|
2336 |
}
|
2337 |
],
|
2338 |
"bleu": 0.1872609836464467,
|
|
|
2339 |
"commonvoice_hours": 0.0,
|
2340 |
"commonvoice_locale": "ht",
|
2341 |
"population": {
|
@@ -2349,10 +2599,12 @@
|
|
2349 |
"scores": [
|
2350 |
{
|
2351 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2352 |
-
"bleu": 0.29445274007068095
|
|
|
2353 |
}
|
2354 |
],
|
2355 |
"bleu": 0.29445274007068095,
|
|
|
2356 |
"commonvoice_hours": 2842.0,
|
2357 |
"commonvoice_locale": "ca",
|
2358 |
"population": {
|
@@ -2369,10 +2621,12 @@
|
|
2369 |
"scores": [
|
2370 |
{
|
2371 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2372 |
-
"bleu": 0.2824719214447976
|
|
|
2373 |
}
|
2374 |
],
|
2375 |
"bleu": 0.2824719214447976,
|
|
|
2376 |
"commonvoice_hours": 1.1,
|
2377 |
"commonvoice_locale": "he",
|
2378 |
"population": {
|
@@ -2386,10 +2640,12 @@
|
|
2386 |
"scores": [
|
2387 |
{
|
2388 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2389 |
-
"bleu": 0.08102496244147746
|
|
|
2390 |
}
|
2391 |
],
|
2392 |
"bleu": 0.08102496244147746,
|
|
|
2393 |
"commonvoice_hours": 0.0,
|
2394 |
"commonvoice_locale": "mos",
|
2395 |
"population": {
|
@@ -2403,10 +2659,12 @@
|
|
2403 |
"scores": [
|
2404 |
{
|
2405 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2406 |
-
"bleu": 0.07329500673809967
|
|
|
2407 |
}
|
2408 |
],
|
2409 |
"bleu": 0.07329500673809967,
|
|
|
2410 |
"commonvoice_hours": null,
|
2411 |
"commonvoice_locale": null,
|
2412 |
"population": {
|
@@ -2420,10 +2678,12 @@
|
|
2420 |
"scores": [
|
2421 |
{
|
2422 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2423 |
-
"bleu": 0.18397910035998616
|
|
|
2424 |
}
|
2425 |
],
|
2426 |
"bleu": 0.18397910035998616,
|
|
|
2427 |
"commonvoice_hours": 361.0,
|
2428 |
"commonvoice_locale": "ug",
|
2429 |
"population": {
|
@@ -2440,10 +2700,12 @@
|
|
2440 |
"scores": [
|
2441 |
{
|
2442 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2443 |
-
"bleu": 0.22401269807719826
|
|
|
2444 |
}
|
2445 |
],
|
2446 |
"bleu": 0.22401269807719826,
|
|
|
2447 |
"commonvoice_hours": null,
|
2448 |
"commonvoice_locale": null,
|
2449 |
"population": {
|
@@ -2457,10 +2719,12 @@
|
|
2457 |
"scores": [
|
2458 |
{
|
2459 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2460 |
-
"bleu": 0.24723779163445408
|
|
|
2461 |
}
|
2462 |
],
|
2463 |
"bleu": 0.24723779163445408,
|
|
|
2464 |
"commonvoice_hours": 16.0,
|
2465 |
"commonvoice_locale": "bg",
|
2466 |
"population": {
|
@@ -2479,10 +2743,12 @@
|
|
2479 |
"scores": [
|
2480 |
{
|
2481 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2482 |
-
"bleu": 0.0366272802298245
|
|
|
2483 |
}
|
2484 |
],
|
2485 |
"bleu": 0.0366272802298245,
|
|
|
2486 |
"commonvoice_hours": 1.3,
|
2487 |
"commonvoice_locale": "zgh",
|
2488 |
"population": {
|
@@ -2496,10 +2762,12 @@
|
|
2496 |
"scores": [
|
2497 |
{
|
2498 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2499 |
-
"bleu": 0.3051247921441283
|
|
|
2500 |
}
|
2501 |
],
|
2502 |
"bleu": 0.3051247921441283,
|
|
|
2503 |
"commonvoice_hours": 0.0,
|
2504 |
"commonvoice_locale": "bs",
|
2505 |
"population": {
|
@@ -2513,10 +2781,12 @@
|
|
2513 |
"scores": [
|
2514 |
{
|
2515 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2516 |
-
"bleu": 0.0957054530624
|
|
|
2517 |
}
|
2518 |
],
|
2519 |
"bleu": 0.0957054530624,
|
|
|
2520 |
"commonvoice_hours": null,
|
2521 |
"commonvoice_locale": null,
|
2522 |
"population": {
|
@@ -2530,10 +2800,12 @@
|
|
2530 |
"scores": [
|
2531 |
{
|
2532 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2533 |
-
"bleu": 0.11554870024021023
|
|
|
2534 |
}
|
2535 |
],
|
2536 |
"bleu": 0.11554870024021023,
|
|
|
2537 |
"commonvoice_hours": 0.5,
|
2538 |
"commonvoice_locale": "sat",
|
2539 |
"population": {
|
@@ -2547,10 +2819,12 @@
|
|
2547 |
"scores": [
|
2548 |
{
|
2549 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2550 |
-
"bleu": 0.3512857581168584
|
|
|
2551 |
}
|
2552 |
],
|
2553 |
"bleu": 0.3512857581168584,
|
|
|
2554 |
"commonvoice_hours": 13.0,
|
2555 |
"commonvoice_locale": "da",
|
2556 |
"population": {
|
@@ -2567,30 +2841,37 @@
|
|
2567 |
"scores": [
|
2568 |
{
|
2569 |
"model": "openai/gpt-4o-mini",
|
2570 |
-
"bleu": 0.15410064596625964
|
|
|
2571 |
},
|
2572 |
{
|
2573 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2574 |
-
"bleu": 0.14820890318014426
|
|
|
2575 |
},
|
2576 |
{
|
2577 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
2578 |
-
"bleu": 0.07938993687949465
|
|
|
2579 |
},
|
2580 |
{
|
2581 |
"model": "google/gemini-2.0-flash-001",
|
2582 |
-
"bleu": 0.2761834512123037
|
|
|
2583 |
},
|
2584 |
{
|
2585 |
"model": "deepseek/deepseek-chat",
|
2586 |
-
"bleu": 0.1718597543270264
|
|
|
2587 |
},
|
2588 |
{
|
2589 |
"model": "microsoft/phi-4",
|
2590 |
-
"bleu": 0.10118596975980092
|
|
|
2591 |
}
|
2592 |
],
|
2593 |
"bleu": 0.15515477688750492,
|
|
|
2594 |
"commonvoice_hours": 2.8,
|
2595 |
"commonvoice_locale": "tk",
|
2596 |
"population": {
|
@@ -2606,30 +2887,37 @@
|
|
2606 |
"scores": [
|
2607 |
{
|
2608 |
"model": "openai/gpt-4o-mini",
|
2609 |
-
"bleu": 0.14440915289810186
|
|
|
2610 |
},
|
2611 |
{
|
2612 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2613 |
-
"bleu": 0.15987085387022903
|
|
|
2614 |
},
|
2615 |
{
|
2616 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
2617 |
-
"bleu": 0.10987778830152085
|
|
|
2618 |
},
|
2619 |
{
|
2620 |
"model": "google/gemini-2.0-flash-001",
|
2621 |
-
"bleu": 0.28985769410441137
|
|
|
2622 |
},
|
2623 |
{
|
2624 |
"model": "deepseek/deepseek-chat",
|
2625 |
-
"bleu": 0.1865343501300658
|
|
|
2626 |
},
|
2627 |
{
|
2628 |
"model": "microsoft/phi-4",
|
2629 |
-
"bleu": 0.10000019378200214
|
|
|
2630 |
}
|
2631 |
],
|
2632 |
"bleu": 0.16509167218105517,
|
|
|
2633 |
"commonvoice_hours": 69.0,
|
2634 |
"commonvoice_locale": "kmr",
|
2635 |
"population": {
|
@@ -2650,10 +2938,12 @@
|
|
2650 |
"scores": [
|
2651 |
{
|
2652 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2653 |
-
"bleu": 0.2290484937313612
|
|
|
2654 |
}
|
2655 |
],
|
2656 |
"bleu": 0.2290484937313612,
|
|
|
2657 |
"commonvoice_hours": 0.0,
|
2658 |
"commonvoice_locale": "hr",
|
2659 |
"population": {
|
@@ -2675,10 +2965,12 @@
|
|
2675 |
"scores": [
|
2676 |
{
|
2677 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2678 |
-
"bleu": 0.26490711574268994
|
|
|
2679 |
}
|
2680 |
],
|
2681 |
"bleu": 0.26490711574268994,
|
|
|
2682 |
"commonvoice_hours": 8.8,
|
2683 |
"commonvoice_locale": "sq",
|
2684 |
"population": {
|
@@ -2698,11 +2990,13 @@
|
|
2698 |
"scores": [
|
2699 |
{
|
2700 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2701 |
-
"bleu": 0.2826836020834733
|
|
|
2702 |
}
|
2703 |
],
|
2704 |
"bleu": 0.2826836020834733,
|
2705 |
-
"
|
|
|
2706 |
"commonvoice_locale": "sk",
|
2707 |
"population": {
|
2708 |
"CZ": 1712400,
|
@@ -2718,10 +3012,12 @@
|
|
2718 |
"scores": [
|
2719 |
{
|
2720 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2721 |
-
"bleu": 0.0633017924291756
|
|
|
2722 |
}
|
2723 |
],
|
2724 |
"bleu": 0.0633017924291756,
|
|
|
2725 |
"commonvoice_hours": 0.3,
|
2726 |
"commonvoice_locale": "dyu",
|
2727 |
"population": {
|
@@ -2735,10 +3031,12 @@
|
|
2735 |
"scores": [
|
2736 |
{
|
2737 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2738 |
-
"bleu": 0.1950781841033538
|
|
|
2739 |
}
|
2740 |
],
|
2741 |
"bleu": 0.1950781841033538,
|
|
|
2742 |
"commonvoice_hours": 46.0,
|
2743 |
"commonvoice_locale": "mn",
|
2744 |
"population": {
|
@@ -2754,10 +3052,12 @@
|
|
2754 |
"scores": [
|
2755 |
{
|
2756 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2757 |
-
"bleu": 0.12381413258013083
|
|
|
2758 |
}
|
2759 |
],
|
2760 |
"bleu": 0.12381413258013083,
|
|
|
2761 |
"commonvoice_hours": 0.0,
|
2762 |
"commonvoice_locale": "st",
|
2763 |
"population": {
|
@@ -2772,10 +3072,12 @@
|
|
2772 |
"scores": [
|
2773 |
{
|
2774 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2775 |
-
"bleu": 0.09139131060492443
|
|
|
2776 |
}
|
2777 |
],
|
2778 |
"bleu": 0.09139131060492443,
|
|
|
2779 |
"commonvoice_hours": 4.2,
|
2780 |
"commonvoice_locale": "tn",
|
2781 |
"population": {
|
@@ -2792,10 +3094,12 @@
|
|
2792 |
"scores": [
|
2793 |
{
|
2794 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2795 |
-
"bleu": 0.12296923497272805
|
|
|
2796 |
}
|
2797 |
],
|
2798 |
"bleu": 0.12296923497272805,
|
|
|
2799 |
"commonvoice_hours": 3.7,
|
2800 |
"commonvoice_locale": "gn",
|
2801 |
"population": {
|
@@ -2811,10 +3115,12 @@
|
|
2811 |
"scores": [
|
2812 |
{
|
2813 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2814 |
-
"bleu": 0.2306868672081301
|
|
|
2815 |
}
|
2816 |
],
|
2817 |
"bleu": 0.2306868672081301,
|
|
|
2818 |
"commonvoice_hours": 15.0,
|
2819 |
"commonvoice_locale": "fi",
|
2820 |
"population": {
|
@@ -2831,10 +3137,12 @@
|
|
2831 |
"scores": [
|
2832 |
{
|
2833 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2834 |
-
"bleu": 0.09865217050437662
|
|
|
2835 |
}
|
2836 |
],
|
2837 |
"bleu": 0.09865217050437662,
|
|
|
2838 |
"commonvoice_hours": 437.0,
|
2839 |
"commonvoice_locale": "lg",
|
2840 |
"population": {
|
@@ -2848,10 +3156,12 @@
|
|
2848 |
"scores": [
|
2849 |
{
|
2850 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2851 |
-
"bleu": 0.1344939664526747
|
|
|
2852 |
}
|
2853 |
],
|
2854 |
"bleu": 0.1344939664526747,
|
|
|
2855 |
"commonvoice_hours": null,
|
2856 |
"commonvoice_locale": null,
|
2857 |
"population": {
|
@@ -2866,10 +3176,12 @@
|
|
2866 |
"scores": [
|
2867 |
{
|
2868 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2869 |
-
"bleu": 0.3568538739752233
|
|
|
2870 |
}
|
2871 |
],
|
2872 |
"bleu": 0.3568538739752233,
|
|
|
2873 |
"commonvoice_hours": 0.1,
|
2874 |
"commonvoice_locale": "nb-NO",
|
2875 |
"population": {
|
@@ -2884,30 +3196,37 @@
|
|
2884 |
"scores": [
|
2885 |
{
|
2886 |
"model": "openai/gpt-4o-mini",
|
2887 |
-
"bleu": 0.07496563614353445
|
|
|
2888 |
},
|
2889 |
{
|
2890 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2891 |
-
"bleu": 0.10425825663987873
|
|
|
2892 |
},
|
2893 |
{
|
2894 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
2895 |
-
"bleu": 0.048552315311727906
|
|
|
2896 |
},
|
2897 |
{
|
2898 |
"model": "google/gemini-2.0-flash-001",
|
2899 |
-
"bleu": 0.20820762589055672
|
|
|
2900 |
},
|
2901 |
{
|
2902 |
"model": "deepseek/deepseek-chat",
|
2903 |
-
"bleu": 0.13037194233770932
|
|
|
2904 |
},
|
2905 |
{
|
2906 |
"model": "microsoft/phi-4",
|
2907 |
-
"bleu": 0.07919429950933718
|
|
|
2908 |
}
|
2909 |
],
|
2910 |
"bleu": 0.10759167930545738,
|
|
|
2911 |
"commonvoice_hours": null,
|
2912 |
"commonvoice_locale": null,
|
2913 |
"population": {
|
@@ -2921,10 +3240,12 @@
|
|
2921 |
"scores": [
|
2922 |
{
|
2923 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2924 |
-
"bleu": 0.2525113198548088
|
|
|
2925 |
}
|
2926 |
],
|
2927 |
"bleu": 0.2525113198548088,
|
|
|
2928 |
"commonvoice_hours": 31.0,
|
2929 |
"commonvoice_locale": "hy-AM",
|
2930 |
"population": {
|
@@ -2945,30 +3266,37 @@
|
|
2945 |
"scores": [
|
2946 |
{
|
2947 |
"model": "openai/gpt-4o-mini",
|
2948 |
-
"bleu": 0.1287306186367617
|
|
|
2949 |
},
|
2950 |
{
|
2951 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2952 |
-
"bleu": 0.11431860079235977
|
|
|
2953 |
},
|
2954 |
{
|
2955 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
2956 |
-
"bleu": 0.048032427671766596
|
|
|
2957 |
},
|
2958 |
{
|
2959 |
"model": "google/gemini-2.0-flash-001",
|
2960 |
-
"bleu": 0.277532484522071
|
|
|
2961 |
},
|
2962 |
{
|
2963 |
"model": "deepseek/deepseek-chat",
|
2964 |
-
"bleu": 0.1559013863573944
|
|
|
2965 |
},
|
2966 |
{
|
2967 |
"model": "microsoft/phi-4",
|
2968 |
-
"bleu": 0.08683694629684643
|
|
|
2969 |
}
|
2970 |
],
|
2971 |
"bleu": 0.13522541071286664,
|
|
|
2972 |
"commonvoice_hours": 0.0,
|
2973 |
"commonvoice_locale": "nso",
|
2974 |
"population": {
|
@@ -2982,10 +3310,12 @@
|
|
2982 |
"scores": [
|
2983 |
{
|
2984 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2985 |
-
"bleu": 0.07123028733548639
|
|
|
2986 |
}
|
2987 |
],
|
2988 |
"bleu": 0.07123028733548639,
|
|
|
2989 |
"commonvoice_hours": 30.0,
|
2990 |
"commonvoice_locale": "luo",
|
2991 |
"population": {
|
@@ -2999,10 +3329,12 @@
|
|
2999 |
"scores": [
|
3000 |
{
|
3001 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3002 |
-
"bleu": 0.17665711931817996
|
|
|
3003 |
}
|
3004 |
],
|
3005 |
"bleu": 0.17665711931817996,
|
|
|
3006 |
"commonvoice_hours": null,
|
3007 |
"commonvoice_locale": null,
|
3008 |
"population": {
|
@@ -3016,10 +3348,12 @@
|
|
3016 |
"scores": [
|
3017 |
{
|
3018 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3019 |
-
"bleu": 0.17291556794348653
|
|
|
3020 |
}
|
3021 |
],
|
3022 |
"bleu": 0.17291556794348653,
|
|
|
3023 |
"commonvoice_hours": 0.2,
|
3024 |
"commonvoice_locale": "lo",
|
3025 |
"population": {
|
@@ -3033,30 +3367,37 @@
|
|
3033 |
"scores": [
|
3034 |
{
|
3035 |
"model": "openai/gpt-4o-mini",
|
3036 |
-
"bleu": 0.1264498146181144
|
|
|
3037 |
},
|
3038 |
{
|
3039 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3040 |
-
"bleu": 0.09614725376527729
|
|
|
3041 |
},
|
3042 |
{
|
3043 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
3044 |
-
"bleu": 0.043920591728788254
|
|
|
3045 |
},
|
3046 |
{
|
3047 |
"model": "google/gemini-2.0-flash-001",
|
3048 |
-
"bleu": 0.2843690426617385
|
|
|
3049 |
},
|
3050 |
{
|
3051 |
"model": "deepseek/deepseek-chat",
|
3052 |
-
"bleu": 0.10072669531344912
|
|
|
3053 |
},
|
3054 |
{
|
3055 |
"model": "microsoft/phi-4",
|
3056 |
-
"bleu": 0.0708900783780892
|
|
|
3057 |
}
|
3058 |
],
|
3059 |
"bleu": 0.12041724607757613,
|
|
|
3060 |
"commonvoice_hours": 0.0,
|
3061 |
"commonvoice_locale": "ts",
|
3062 |
"population": {
|
@@ -3072,10 +3413,12 @@
|
|
3072 |
"scores": [
|
3073 |
{
|
3074 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3075 |
-
"bleu": 0.20937766416587725
|
|
|
3076 |
}
|
3077 |
],
|
3078 |
"bleu": 0.20937766416587725,
|
|
|
3079 |
"commonvoice_hours": null,
|
3080 |
"commonvoice_locale": null,
|
3081 |
"population": {
|
@@ -3089,10 +3432,12 @@
|
|
3089 |
"scores": [
|
3090 |
{
|
3091 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3092 |
-
"bleu": 0.06328122760447334
|
|
|
3093 |
}
|
3094 |
],
|
3095 |
"bleu": 0.06328122760447334,
|
|
|
3096 |
"commonvoice_hours": 0.0,
|
3097 |
"commonvoice_locale": "ee",
|
3098 |
"population": {
|
@@ -3107,10 +3452,12 @@
|
|
3107 |
"scores": [
|
3108 |
{
|
3109 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3110 |
-
"bleu": 0.11888625287150432
|
|
|
3111 |
}
|
3112 |
],
|
3113 |
"bleu": 0.11888625287150432,
|
|
|
3114 |
"commonvoice_hours": null,
|
3115 |
"commonvoice_locale": null,
|
3116 |
"population": {
|
@@ -3125,10 +3472,12 @@
|
|
3125 |
"scores": [
|
3126 |
{
|
3127 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3128 |
-
"bleu": 0.17517997036818814
|
|
|
3129 |
}
|
3130 |
],
|
3131 |
"bleu": 0.17517997036818814,
|
|
|
3132 |
"commonvoice_hours": 0.0,
|
3133 |
"commonvoice_locale": "gom",
|
3134 |
"population": {
|
@@ -3142,10 +3491,12 @@
|
|
3142 |
"scores": [
|
3143 |
{
|
3144 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3145 |
-
"bleu": 0.09766297423802607
|
|
|
3146 |
}
|
3147 |
],
|
3148 |
"bleu": 0.09766297423802607,
|
|
|
3149 |
"commonvoice_hours": null,
|
3150 |
"commonvoice_locale": null,
|
3151 |
"population": {
|
@@ -3159,10 +3510,12 @@
|
|
3159 |
"scores": [
|
3160 |
{
|
3161 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3162 |
-
"bleu": 0.21429523594040997
|
|
|
3163 |
}
|
3164 |
],
|
3165 |
"bleu": 0.21429523594040997,
|
|
|
3166 |
"commonvoice_hours": null,
|
3167 |
"commonvoice_locale": null,
|
3168 |
"population": {
|
@@ -3177,30 +3530,37 @@
|
|
3177 |
"scores": [
|
3178 |
{
|
3179 |
"model": "openai/gpt-4o-mini",
|
3180 |
-
"bleu": 0.19986098660959015
|
|
|
3181 |
},
|
3182 |
{
|
3183 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3184 |
-
"bleu": 0.21159778572935684
|
|
|
3185 |
},
|
3186 |
{
|
3187 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
3188 |
-
"bleu": 0.1588300738463149
|
|
|
3189 |
},
|
3190 |
{
|
3191 |
"model": "google/gemini-2.0-flash-001",
|
3192 |
-
"bleu": 0.30563834118855027
|
|
|
3193 |
},
|
3194 |
{
|
3195 |
"model": "deepseek/deepseek-chat",
|
3196 |
-
"bleu": 0.22666325208418955
|
|
|
3197 |
},
|
3198 |
{
|
3199 |
"model": "microsoft/phi-4",
|
3200 |
-
"bleu": 0.18882590620933629
|
|
|
3201 |
}
|
3202 |
],
|
3203 |
"bleu": 0.215236057611223,
|
|
|
3204 |
"commonvoice_hours": null,
|
3205 |
"commonvoice_locale": null,
|
3206 |
"population": {
|
@@ -3215,10 +3575,12 @@
|
|
3215 |
"scores": [
|
3216 |
{
|
3217 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3218 |
-
"bleu": 0.16911632683538352
|
|
|
3219 |
}
|
3220 |
],
|
3221 |
"bleu": 0.16911632683538352,
|
|
|
3222 |
"commonvoice_hours": 0.0,
|
3223 |
"commonvoice_locale": "ace",
|
3224 |
"population": {
|
@@ -3232,30 +3594,37 @@
|
|
3232 |
"scores": [
|
3233 |
{
|
3234 |
"model": "openai/gpt-4o-mini",
|
3235 |
-
"bleu": 0.03567194702202585
|
|
|
3236 |
},
|
3237 |
{
|
3238 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3239 |
-
"bleu": 0.14589621017705648
|
|
|
3240 |
},
|
3241 |
{
|
3242 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
3243 |
-
"bleu": 0.011114664716630177
|
|
|
3244 |
},
|
3245 |
{
|
3246 |
"model": "google/gemini-2.0-flash-001",
|
3247 |
-
"bleu": 0.24688742301342204
|
|
|
3248 |
},
|
3249 |
{
|
3250 |
"model": "deepseek/deepseek-chat",
|
3251 |
-
"bleu": 0.11534595629433392
|
|
|
3252 |
},
|
3253 |
{
|
3254 |
"model": "microsoft/phi-4",
|
3255 |
-
"bleu": 0.06564720827517354
|
|
|
3256 |
}
|
3257 |
],
|
3258 |
"bleu": 0.10342723491644035,
|
|
|
3259 |
"commonvoice_hours": 0.0,
|
3260 |
"commonvoice_locale": "shn",
|
3261 |
"population": {
|
@@ -3270,10 +3639,12 @@
|
|
3270 |
"scores": [
|
3271 |
{
|
3272 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3273 |
-
"bleu": 0.22489436376782782
|
|
|
3274 |
}
|
3275 |
],
|
3276 |
"bleu": 0.22489436376782782,
|
|
|
3277 |
"commonvoice_hours": 158.0,
|
3278 |
"commonvoice_locale": "ka",
|
3279 |
"population": {
|
@@ -3289,10 +3660,12 @@
|
|
3289 |
"scores": [
|
3290 |
{
|
3291 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3292 |
-
"bleu": 0.2463790593991139
|
|
|
3293 |
}
|
3294 |
],
|
3295 |
"bleu": 0.2463790593991139,
|
|
|
3296 |
"commonvoice_hours": 109.0,
|
3297 |
"commonvoice_locale": "gl",
|
3298 |
"population": {
|
@@ -3307,10 +3680,12 @@
|
|
3307 |
"scores": [
|
3308 |
{
|
3309 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3310 |
-
"bleu": 0.10115588577551943
|
|
|
3311 |
}
|
3312 |
],
|
3313 |
"bleu": 0.10115588577551943,
|
|
|
3314 |
"commonvoice_hours": 0.0,
|
3315 |
"commonvoice_locale": "ln",
|
3316 |
"population": {
|
@@ -3327,10 +3702,12 @@
|
|
3327 |
"scores": [
|
3328 |
{
|
3329 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3330 |
-
"bleu": 0.03368838568519845
|
|
|
3331 |
}
|
3332 |
],
|
3333 |
"bleu": 0.03368838568519845,
|
|
|
3334 |
"commonvoice_hours": 571.0,
|
3335 |
"commonvoice_locale": "kab",
|
3336 |
"population": {
|
@@ -3344,10 +3721,12 @@
|
|
3344 |
"scores": [
|
3345 |
{
|
3346 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3347 |
-
"bleu": 0.21002212869070494
|
|
|
3348 |
}
|
3349 |
],
|
3350 |
"bleu": 0.21002212869070494,
|
|
|
3351 |
"commonvoice_hours": 39.0,
|
3352 |
"commonvoice_locale": "ky",
|
3353 |
"population": {
|
@@ -3363,10 +3742,12 @@
|
|
3363 |
"scores": [
|
3364 |
{
|
3365 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3366 |
-
"bleu": 0.0832678269022026
|
|
|
3367 |
}
|
3368 |
],
|
3369 |
"bleu": 0.0832678269022026,
|
|
|
3370 |
"commonvoice_hours": null,
|
3371 |
"commonvoice_locale": null,
|
3372 |
"population": {
|
@@ -3380,10 +3761,12 @@
|
|
3380 |
"scores": [
|
3381 |
{
|
3382 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3383 |
-
"bleu": 0.2156899984074879
|
|
|
3384 |
}
|
3385 |
],
|
3386 |
"bleu": 0.2156899984074879,
|
|
|
3387 |
"commonvoice_hours": null,
|
3388 |
"commonvoice_locale": null,
|
3389 |
"population": {
|
@@ -3398,10 +3781,12 @@
|
|
3398 |
"scores": [
|
3399 |
{
|
3400 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3401 |
-
"bleu": 0.11883469874802492
|
|
|
3402 |
}
|
3403 |
],
|
3404 |
"bleu": 0.11883469874802492,
|
|
|
3405 |
"commonvoice_hours": 0.0,
|
3406 |
"commonvoice_locale": "bo",
|
3407 |
"population": {
|
@@ -3417,10 +3802,12 @@
|
|
3417 |
"scores": [
|
3418 |
{
|
3419 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3420 |
-
"bleu": 0.052708457503892185
|
|
|
3421 |
}
|
3422 |
],
|
3423 |
"bleu": 0.052708457503892185,
|
|
|
3424 |
"commonvoice_hours": null,
|
3425 |
"commonvoice_locale": null,
|
3426 |
"population": {
|
@@ -3434,10 +3821,12 @@
|
|
3434 |
"scores": [
|
3435 |
{
|
3436 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3437 |
-
"bleu": 0.07563412710891973
|
|
|
3438 |
}
|
3439 |
],
|
3440 |
"bleu": 0.07563412710891973,
|
|
|
3441 |
"commonvoice_hours": null,
|
3442 |
"commonvoice_locale": null,
|
3443 |
"population": {
|
@@ -3452,10 +3841,12 @@
|
|
3452 |
"scores": [
|
3453 |
{
|
3454 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3455 |
-
"bleu": 0.18698274115592
|
|
|
3456 |
}
|
3457 |
],
|
3458 |
"bleu": 0.18698274115592,
|
|
|
3459 |
"commonvoice_hours": null,
|
3460 |
"commonvoice_locale": null,
|
3461 |
"population": {
|
@@ -3469,10 +3860,12 @@
|
|
3469 |
"scores": [
|
3470 |
{
|
3471 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3472 |
-
"bleu": 0.23629191535308328
|
|
|
3473 |
}
|
3474 |
],
|
3475 |
"bleu": 0.23629191535308328,
|
|
|
3476 |
"commonvoice_hours": 25.0,
|
3477 |
"commonvoice_locale": "lt",
|
3478 |
"population": {
|
@@ -3488,10 +3881,12 @@
|
|
3488 |
"scores": [
|
3489 |
{
|
3490 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3491 |
-
"bleu": 0.10571792263190831
|
|
|
3492 |
}
|
3493 |
],
|
3494 |
"bleu": 0.10571792263190831,
|
|
|
3495 |
"commonvoice_hours": 0.0,
|
3496 |
"commonvoice_locale": "ss",
|
3497 |
"population": {
|
@@ -3507,10 +3902,12 @@
|
|
3507 |
"scores": [
|
3508 |
{
|
3509 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3510 |
-
"bleu": 0.3116700967049491
|
|
|
3511 |
}
|
3512 |
],
|
3513 |
"bleu": 0.3116700967049491,
|
|
|
3514 |
"commonvoice_hours": 1.8,
|
3515 |
"commonvoice_locale": "oc",
|
3516 |
"population": {
|
@@ -3525,10 +3922,12 @@
|
|
3525 |
"scores": [
|
3526 |
{
|
3527 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3528 |
-
"bleu": 0.20199966692246552
|
|
|
3529 |
}
|
3530 |
],
|
3531 |
"bleu": 0.20199966692246552,
|
|
|
3532 |
"commonvoice_hours": 32.0,
|
3533 |
"commonvoice_locale": "tt",
|
3534 |
"population": {
|
@@ -3542,10 +3941,12 @@
|
|
3542 |
"scores": [
|
3543 |
{
|
3544 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3545 |
-
"bleu": 0.25710751649810404
|
|
|
3546 |
}
|
3547 |
],
|
3548 |
"bleu": 0.25710751649810404,
|
|
|
3549 |
"commonvoice_hours": 17.0,
|
3550 |
"commonvoice_locale": "sl",
|
3551 |
"population": {
|
@@ -3562,10 +3963,12 @@
|
|
3562 |
"scores": [
|
3563 |
{
|
3564 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3565 |
-
"bleu": 0.07193315161893905
|
|
|
3566 |
}
|
3567 |
],
|
3568 |
"bleu": 0.07193315161893905,
|
|
|
3569 |
"commonvoice_hours": null,
|
3570 |
"commonvoice_locale": null,
|
3571 |
"population": {
|
@@ -3579,10 +3982,12 @@
|
|
3579 |
"scores": [
|
3580 |
{
|
3581 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3582 |
-
"bleu": 0.16319209573807847
|
|
|
3583 |
}
|
3584 |
],
|
3585 |
"bleu": 0.16319209573807847,
|
|
|
3586 |
"commonvoice_hours": 27.0,
|
3587 |
"commonvoice_locale": "cv",
|
3588 |
"population": {
|
@@ -3596,10 +4001,12 @@
|
|
3596 |
"scores": [
|
3597 |
{
|
3598 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3599 |
-
"bleu": 0.23494956875272427
|
|
|
3600 |
}
|
3601 |
],
|
3602 |
"bleu": 0.23494956875272427,
|
|
|
3603 |
"commonvoice_hours": 259.0,
|
3604 |
"commonvoice_locale": "ba",
|
3605 |
"population": {
|
@@ -3613,30 +4020,37 @@
|
|
3613 |
"scores": [
|
3614 |
{
|
3615 |
"model": "openai/gpt-4o-mini",
|
3616 |
-
"bleu": 0.09211959148198216
|
|
|
3617 |
},
|
3618 |
{
|
3619 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3620 |
-
"bleu": 0.08953119623294435
|
|
|
3621 |
},
|
3622 |
{
|
3623 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
3624 |
-
"bleu": 0.036353192983993324
|
|
|
3625 |
},
|
3626 |
{
|
3627 |
"model": "google/gemini-2.0-flash-001",
|
3628 |
-
"bleu": 0.21852974820220555
|
|
|
3629 |
},
|
3630 |
{
|
3631 |
"model": "deepseek/deepseek-chat",
|
3632 |
-
"bleu": 0.13308678184347988
|
|
|
3633 |
},
|
3634 |
{
|
3635 |
"model": "microsoft/phi-4",
|
3636 |
-
"bleu": 0.06252197708878435
|
|
|
3637 |
}
|
3638 |
],
|
3639 |
"bleu": 0.10535708130556494,
|
|
|
3640 |
"commonvoice_hours": null,
|
3641 |
"commonvoice_locale": null,
|
3642 |
"population": {
|
@@ -3650,10 +4064,12 @@
|
|
3650 |
"scores": [
|
3651 |
{
|
3652 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3653 |
-
"bleu": 0.2635416107541368
|
|
|
3654 |
}
|
3655 |
],
|
3656 |
"bleu": 0.2635416107541368,
|
|
|
3657 |
"commonvoice_hours": 18.0,
|
3658 |
"commonvoice_locale": "mk",
|
3659 |
"population": {
|
@@ -3669,30 +4085,37 @@
|
|
3669 |
"scores": [
|
3670 |
{
|
3671 |
"model": "openai/gpt-4o-mini",
|
3672 |
-
"bleu": 0.14637588345836686
|
|
|
3673 |
},
|
3674 |
{
|
3675 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3676 |
-
"bleu": 0.17061619096272593
|
|
|
3677 |
},
|
3678 |
{
|
3679 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
3680 |
-
"bleu": 0.11313843155080379
|
|
|
3681 |
},
|
3682 |
{
|
3683 |
"model": "google/gemini-2.0-flash-001",
|
3684 |
-
"bleu": 0.27369890360254523
|
|
|
3685 |
},
|
3686 |
{
|
3687 |
"model": "deepseek/deepseek-chat",
|
3688 |
-
"bleu": 0.19116528491340065
|
|
|
3689 |
},
|
3690 |
{
|
3691 |
"model": "microsoft/phi-4",
|
3692 |
-
"bleu": 0.11054650956119119
|
|
|
3693 |
}
|
3694 |
],
|
3695 |
"bleu": 0.16759020067483896,
|
|
|
3696 |
"commonvoice_hours": null,
|
3697 |
"commonvoice_locale": null,
|
3698 |
"population": {
|
@@ -3706,10 +4129,12 @@
|
|
3706 |
"scores": [
|
3707 |
{
|
3708 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3709 |
-
"bleu": 0.061702153982680315
|
|
|
3710 |
}
|
3711 |
],
|
3712 |
"bleu": 0.061702153982680315,
|
|
|
3713 |
"commonvoice_hours": 0.0,
|
3714 |
"commonvoice_locale": "mni",
|
3715 |
"population": {
|
@@ -3724,10 +4149,12 @@
|
|
3724 |
"scores": [
|
3725 |
{
|
3726 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3727 |
-
"bleu": 0.24764447442173138
|
|
|
3728 |
}
|
3729 |
],
|
3730 |
"bleu": 0.24764447442173138,
|
|
|
3731 |
"commonvoice_hours": 0.0,
|
3732 |
"commonvoice_locale": "vec",
|
3733 |
"population": {
|
@@ -3745,10 +4172,12 @@
|
|
3745 |
"scores": [
|
3746 |
{
|
3747 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3748 |
-
"bleu": 0.31661912673403325
|
|
|
3749 |
}
|
3750 |
],
|
3751 |
"bleu": 0.31661912673403325,
|
|
|
3752 |
"commonvoice_hours": 1.5,
|
3753 |
"commonvoice_locale": "nn-NO",
|
3754 |
"population": {
|
@@ -3762,10 +4191,12 @@
|
|
3762 |
"scores": [
|
3763 |
{
|
3764 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3765 |
-
"bleu": 0.2768559181644857
|
|
|
3766 |
}
|
3767 |
],
|
3768 |
"bleu": 0.2768559181644857,
|
|
|
3769 |
"commonvoice_hours": 5.8,
|
3770 |
"commonvoice_locale": "ga-IE",
|
3771 |
"population": {
|
@@ -3780,10 +4211,12 @@
|
|
3780 |
"scores": [
|
3781 |
{
|
3782 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3783 |
-
"bleu": 0.23200427142275887
|
|
|
3784 |
}
|
3785 |
],
|
3786 |
"bleu": 0.23200427142275887,
|
|
|
3787 |
"commonvoice_hours": 260.0,
|
3788 |
"commonvoice_locale": "lv",
|
3789 |
"population": {
|
@@ -3797,10 +4230,12 @@
|
|
3797 |
"scores": [
|
3798 |
{
|
3799 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3800 |
-
"bleu": 0.1907277513380933
|
|
|
3801 |
}
|
3802 |
],
|
3803 |
"bleu": 0.1907277513380933,
|
|
|
3804 |
"commonvoice_hours": 335.0,
|
3805 |
"commonvoice_locale": "eu",
|
3806 |
"population": {
|
@@ -3815,10 +4250,12 @@
|
|
3815 |
"scores": [
|
3816 |
{
|
3817 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3818 |
-
"bleu": 0.2003666163856343
|
|
|
3819 |
}
|
3820 |
],
|
3821 |
"bleu": 0.2003666163856343,
|
|
|
3822 |
"commonvoice_hours": 2.9,
|
3823 |
"commonvoice_locale": "sc",
|
3824 |
"population": {
|
@@ -3832,30 +4269,37 @@
|
|
3832 |
"scores": [
|
3833 |
{
|
3834 |
"model": "openai/gpt-4o-mini",
|
3835 |
-
"bleu": 0.26325866988203733
|
|
|
3836 |
},
|
3837 |
{
|
3838 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3839 |
-
"bleu": 0.25411630061861235
|
|
|
3840 |
},
|
3841 |
{
|
3842 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
3843 |
-
"bleu": 0.19634428413472024
|
|
|
3844 |
},
|
3845 |
{
|
3846 |
"model": "google/gemini-2.0-flash-001",
|
3847 |
-
"bleu": 0.3267312117229826
|
|
|
3848 |
},
|
3849 |
{
|
3850 |
"model": "deepseek/deepseek-chat",
|
3851 |
-
"bleu": 0.27947088689796734
|
|
|
3852 |
},
|
3853 |
{
|
3854 |
"model": "microsoft/phi-4",
|
3855 |
-
"bleu": 0.23043700347741075
|
|
|
3856 |
}
|
3857 |
],
|
3858 |
"bleu": 0.2583930594556218,
|
|
|
3859 |
"commonvoice_hours": null,
|
3860 |
"commonvoice_locale": null,
|
3861 |
"population": {
|
@@ -3869,10 +4313,12 @@
|
|
3869 |
"scores": [
|
3870 |
{
|
3871 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3872 |
-
"bleu": 0.2748989006328114
|
|
|
3873 |
}
|
3874 |
],
|
3875 |
"bleu": 0.2748989006328114,
|
|
|
3876 |
"commonvoice_hours": 0.5,
|
3877 |
"commonvoice_locale": "yi",
|
3878 |
"population": {
|
@@ -3889,10 +4335,12 @@
|
|
3889 |
"scores": [
|
3890 |
{
|
3891 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3892 |
-
"bleu": 0.06343642810657522
|
|
|
3893 |
}
|
3894 |
],
|
3895 |
"bleu": 0.06343642810657522,
|
|
|
3896 |
"commonvoice_hours": null,
|
3897 |
"commonvoice_locale": null,
|
3898 |
"population": {
|
@@ -3906,10 +4354,12 @@
|
|
3906 |
"scores": [
|
3907 |
{
|
3908 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3909 |
-
"bleu": 0.28017358847160223
|
|
|
3910 |
}
|
3911 |
],
|
3912 |
"bleu": 0.28017358847160223,
|
|
|
3913 |
"commonvoice_hours": null,
|
3914 |
"commonvoice_locale": null,
|
3915 |
"population": {
|
@@ -3923,10 +4373,12 @@
|
|
3923 |
"scores": [
|
3924 |
{
|
3925 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3926 |
-
"bleu": 0.31667961925197524
|
|
|
3927 |
}
|
3928 |
],
|
3929 |
"bleu": 0.31667961925197524,
|
|
|
3930 |
"commonvoice_hours": 124.0,
|
3931 |
"commonvoice_locale": "cy",
|
3932 |
"population": {
|
@@ -3941,10 +4393,12 @@
|
|
3941 |
"scores": [
|
3942 |
{
|
3943 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3944 |
-
"bleu": 0.23762161272302187
|
|
|
3945 |
}
|
3946 |
],
|
3947 |
"bleu": 0.23762161272302187,
|
|
|
3948 |
"commonvoice_hours": 58.0,
|
3949 |
"commonvoice_locale": "et",
|
3950 |
"population": {
|
@@ -3959,10 +4413,12 @@
|
|
3959 |
"scores": [
|
3960 |
{
|
3961 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3962 |
-
"bleu": 0.3066166431048003
|
|
|
3963 |
}
|
3964 |
],
|
3965 |
"bleu": 0.3066166431048003,
|
|
|
3966 |
"commonvoice_hours": 0.7,
|
3967 |
"commonvoice_locale": "ast",
|
3968 |
"population": {
|
@@ -3976,30 +4432,37 @@
|
|
3976 |
"scores": [
|
3977 |
{
|
3978 |
"model": "openai/gpt-4o-mini",
|
3979 |
-
"bleu": 0.0026829540009563496
|
|
|
3980 |
},
|
3981 |
{
|
3982 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3983 |
-
"bleu": 0.0028810767141941676
|
|
|
3984 |
},
|
3985 |
{
|
3986 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
3987 |
-
"bleu": 0.002244809403558117
|
|
|
3988 |
},
|
3989 |
{
|
3990 |
"model": "google/gemini-2.0-flash-001",
|
3991 |
-
"bleu": 0.1373860974763018
|
|
|
3992 |
},
|
3993 |
{
|
3994 |
"model": "deepseek/deepseek-chat",
|
3995 |
-
"bleu": 0.005449384832055512
|
|
|
3996 |
},
|
3997 |
{
|
3998 |
"model": "microsoft/phi-4",
|
3999 |
-
"bleu": 0.001220306675003964
|
|
|
4000 |
}
|
4001 |
],
|
4002 |
"bleu": 0.02531077151701165,
|
|
|
4003 |
"commonvoice_hours": 0.0,
|
4004 |
"commonvoice_locale": "nqo",
|
4005 |
"population": {
|
@@ -4013,10 +4476,12 @@
|
|
4013 |
"scores": [
|
4014 |
{
|
4015 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4016 |
-
"bleu": 0.04422064781985695
|
|
|
4017 |
}
|
4018 |
],
|
4019 |
"bleu": 0.04422064781985695,
|
|
|
4020 |
"commonvoice_hours": null,
|
4021 |
"commonvoice_locale": null,
|
4022 |
"population": {
|
@@ -4030,30 +4495,37 @@
|
|
4030 |
"scores": [
|
4031 |
{
|
4032 |
"model": "openai/gpt-4o-mini",
|
4033 |
-
"bleu": 0.2433180508520944
|
|
|
4034 |
},
|
4035 |
{
|
4036 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4037 |
-
"bleu": 0.2730358021257564
|
|
|
4038 |
},
|
4039 |
{
|
4040 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
4041 |
-
"bleu": 0.1659569541464764
|
|
|
4042 |
},
|
4043 |
{
|
4044 |
"model": "google/gemini-2.0-flash-001",
|
4045 |
-
"bleu": 0.3868854055493315
|
|
|
4046 |
},
|
4047 |
{
|
4048 |
"model": "deepseek/deepseek-chat",
|
4049 |
-
"bleu": 0.30131335750773747
|
|
|
4050 |
},
|
4051 |
{
|
4052 |
"model": "microsoft/phi-4",
|
4053 |
-
"bleu": 0.22953082347299453
|
|
|
4054 |
}
|
4055 |
],
|
4056 |
"bleu": 0.26667339894239844,
|
|
|
4057 |
"commonvoice_hours": 5.1,
|
4058 |
"commonvoice_locale": "lij",
|
4059 |
"population": {
|
@@ -4067,10 +4539,12 @@
|
|
4067 |
"scores": [
|
4068 |
{
|
4069 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4070 |
-
"bleu": 0.2049568393036302
|
|
|
4071 |
}
|
4072 |
],
|
4073 |
"bleu": 0.2049568393036302,
|
|
|
4074 |
"commonvoice_hours": null,
|
4075 |
"commonvoice_locale": null,
|
4076 |
"population": {
|
@@ -4084,10 +4558,12 @@
|
|
4084 |
"scores": [
|
4085 |
{
|
4086 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4087 |
-
"bleu": 0.1477332953533076
|
|
|
4088 |
}
|
4089 |
],
|
4090 |
"bleu": 0.1477332953533076,
|
|
|
4091 |
"commonvoice_hours": 282.0,
|
4092 |
"commonvoice_locale": "mhr",
|
4093 |
"population": {
|
@@ -4101,10 +4577,12 @@
|
|
4101 |
"scores": [
|
4102 |
{
|
4103 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4104 |
-
"bleu": 0.26991391704955275
|
|
|
4105 |
}
|
4106 |
],
|
4107 |
"bleu": 0.26991391704955275,
|
|
|
4108 |
"commonvoice_hours": 0.0,
|
4109 |
"commonvoice_locale": "scn",
|
4110 |
"population": {
|
@@ -4118,10 +4596,12 @@
|
|
4118 |
"scores": [
|
4119 |
{
|
4120 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4121 |
-
"bleu": 0.2478859256009672
|
|
|
4122 |
}
|
4123 |
],
|
4124 |
"bleu": 0.2478859256009672,
|
|
|
4125 |
"commonvoice_hours": null,
|
4126 |
"commonvoice_locale": null,
|
4127 |
"population": {
|
@@ -4135,30 +4615,37 @@
|
|
4135 |
"scores": [
|
4136 |
{
|
4137 |
"model": "openai/gpt-4o-mini",
|
4138 |
-
"bleu": 0.27335683193570975
|
|
|
4139 |
},
|
4140 |
{
|
4141 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4142 |
-
"bleu": 0.28654849898846085
|
|
|
4143 |
},
|
4144 |
{
|
4145 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
4146 |
-
"bleu": 0.15248109554681186
|
|
|
4147 |
},
|
4148 |
{
|
4149 |
"model": "google/gemini-2.0-flash-001",
|
4150 |
-
"bleu": 0.38954095833662916
|
|
|
4151 |
},
|
4152 |
{
|
4153 |
"model": "deepseek/deepseek-chat",
|
4154 |
-
"bleu": 0.3175303995061197
|
|
|
4155 |
},
|
4156 |
{
|
4157 |
"model": "microsoft/phi-4",
|
4158 |
-
"bleu": 0.11179045198515461
|
|
|
4159 |
}
|
4160 |
],
|
4161 |
"bleu": 0.2552080393831477,
|
|
|
4162 |
"commonvoice_hours": 8.7,
|
4163 |
"commonvoice_locale": "mt",
|
4164 |
"population": {
|
@@ -4172,10 +4659,12 @@
|
|
4172 |
"scores": [
|
4173 |
{
|
4174 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4175 |
-
"bleu": 0.2835765541228824
|
|
|
4176 |
}
|
4177 |
],
|
4178 |
"bleu": 0.2835765541228824,
|
|
|
4179 |
"commonvoice_hours": 0.0,
|
4180 |
"commonvoice_locale": "lb",
|
4181 |
"population": {
|
@@ -4189,10 +4678,12 @@
|
|
4189 |
"scores": [
|
4190 |
{
|
4191 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4192 |
-
"bleu": 0.05723633975042216
|
|
|
4193 |
}
|
4194 |
],
|
4195 |
"bleu": 0.05723633975042216,
|
|
|
4196 |
"commonvoice_hours": null,
|
4197 |
"commonvoice_locale": null,
|
4198 |
"population": {
|
@@ -4207,10 +4698,12 @@
|
|
4207 |
"scores": [
|
4208 |
{
|
4209 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4210 |
-
"bleu": 0.10451524271139898
|
|
|
4211 |
}
|
4212 |
],
|
4213 |
"bleu": 0.10451524271139898,
|
|
|
4214 |
"commonvoice_hours": null,
|
4215 |
"commonvoice_locale": null,
|
4216 |
"population": {
|
@@ -4224,10 +4717,12 @@
|
|
4224 |
"scores": [
|
4225 |
{
|
4226 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4227 |
-
"bleu": 0.2142644347281729
|
|
|
4228 |
}
|
4229 |
],
|
4230 |
"bleu": 0.2142644347281729,
|
|
|
4231 |
"commonvoice_hours": 0.1,
|
4232 |
"commonvoice_locale": "is",
|
4233 |
"population": {
|
@@ -4241,30 +4736,37 @@
|
|
4241 |
"scores": [
|
4242 |
{
|
4243 |
"model": "openai/gpt-4o-mini",
|
4244 |
-
"bleu": 0.13327372905795537
|
|
|
4245 |
},
|
4246 |
{
|
4247 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4248 |
-
"bleu": 0.11602460228698847
|
|
|
4249 |
},
|
4250 |
{
|
4251 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
4252 |
-
"bleu": 0.05771585788755527
|
|
|
4253 |
},
|
4254 |
{
|
4255 |
"model": "google/gemini-2.0-flash-001",
|
4256 |
-
"bleu": 0.2585259997356889
|
|
|
4257 |
},
|
4258 |
{
|
4259 |
"model": "deepseek/deepseek-chat",
|
4260 |
-
"bleu": 0.22221137013078898
|
|
|
4261 |
},
|
4262 |
{
|
4263 |
"model": "microsoft/phi-4",
|
4264 |
-
"bleu": 0.04756300118196289
|
|
|
4265 |
}
|
4266 |
],
|
4267 |
"bleu": 0.13921909338015664,
|
|
|
4268 |
"commonvoice_hours": null,
|
4269 |
"commonvoice_locale": null,
|
4270 |
"population": {
|
@@ -4279,10 +4781,12 @@
|
|
4279 |
"scores": [
|
4280 |
{
|
4281 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4282 |
-
"bleu": 0.22725256040555009
|
|
|
4283 |
}
|
4284 |
],
|
4285 |
"bleu": 0.22725256040555009,
|
|
|
4286 |
"commonvoice_hours": 0.0,
|
4287 |
"commonvoice_locale": "crh",
|
4288 |
"population": {
|
@@ -4296,10 +4800,12 @@
|
|
4296 |
"scores": [
|
4297 |
{
|
4298 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4299 |
-
"bleu": 0.21648792499796674
|
|
|
4300 |
}
|
4301 |
],
|
4302 |
"bleu": 0.21648792499796674,
|
|
|
4303 |
"commonvoice_hours": 0.0,
|
4304 |
"commonvoice_locale": "pap-AW",
|
4305 |
"population": {
|
@@ -4315,10 +4821,12 @@
|
|
4315 |
"scores": [
|
4316 |
{
|
4317 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4318 |
-
"bleu": 0.13475273241606922
|
|
|
4319 |
}
|
4320 |
],
|
4321 |
"bleu": 0.13475273241606922,
|
|
|
4322 |
"commonvoice_hours": 28.0,
|
4323 |
"commonvoice_locale": "ltg",
|
4324 |
"population": {
|
@@ -4332,10 +4840,12 @@
|
|
4332 |
"scores": [
|
4333 |
{
|
4334 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4335 |
-
"bleu": 0.17610729049259877
|
|
|
4336 |
}
|
4337 |
],
|
4338 |
"bleu": 0.17610729049259877,
|
|
|
4339 |
"commonvoice_hours": null,
|
4340 |
"commonvoice_locale": null,
|
4341 |
"population": {
|
@@ -4349,10 +4859,12 @@
|
|
4349 |
"scores": [
|
4350 |
{
|
4351 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4352 |
-
"bleu": 0.2154279041570466
|
|
|
4353 |
}
|
4354 |
],
|
4355 |
"bleu": 0.2154279041570466,
|
|
|
4356 |
"commonvoice_hours": null,
|
4357 |
"commonvoice_locale": null,
|
4358 |
"population": {
|
@@ -4366,10 +4878,12 @@
|
|
4366 |
"scores": [
|
4367 |
{
|
4368 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4369 |
-
"bleu": 0.21180629663838063
|
|
|
4370 |
}
|
4371 |
],
|
4372 |
"bleu": 0.21180629663838063,
|
|
|
4373 |
"commonvoice_hours": 0.0,
|
4374 |
"commonvoice_locale": "fo",
|
4375 |
"population": {
|
@@ -4384,10 +4898,12 @@
|
|
4384 |
"scores": [
|
4385 |
{
|
4386 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4387 |
-
"bleu": 0.2255876860328074
|
|
|
4388 |
}
|
4389 |
],
|
4390 |
"bleu": 0.2255876860328074,
|
|
|
4391 |
"commonvoice_hours": null,
|
4392 |
"commonvoice_locale": null,
|
4393 |
"population": {
|
@@ -4401,10 +4917,12 @@
|
|
4401 |
"scores": [
|
4402 |
{
|
4403 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4404 |
-
"bleu": 0.14313294345831834
|
|
|
4405 |
}
|
4406 |
],
|
4407 |
"bleu": 0.14313294345831834,
|
|
|
4408 |
"commonvoice_hours": null,
|
4409 |
"commonvoice_locale": null,
|
4410 |
"population": {
|
@@ -4418,10 +4936,12 @@
|
|
4418 |
"scores": [
|
4419 |
{
|
4420 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4421 |
-
"bleu": 0.27440987441620224
|
|
|
4422 |
}
|
4423 |
],
|
4424 |
"bleu": 0.27440987441620224,
|
|
|
4425 |
"commonvoice_hours": 1436.0,
|
4426 |
"commonvoice_locale": "eo",
|
4427 |
"population": {
|
|
|
6 |
"scores": [
|
7 |
{
|
8 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
9 |
+
"bleu": 0.4351349353198866,
|
10 |
+
"chrf": 54.9504915580248
|
11 |
}
|
12 |
],
|
13 |
+
"bleu": 0.4351349353198866,
|
14 |
+
"chrf": 54.9504915580248,
|
15 |
"commonvoice_hours": 2649.0,
|
16 |
"commonvoice_locale": "en",
|
17 |
"population": {
|
|
|
179 |
"scores": [
|
180 |
{
|
181 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
182 |
+
"bleu": 0.3977775857451761,
|
183 |
+
"chrf": 57.672913792439125
|
184 |
}
|
185 |
],
|
186 |
+
"bleu": 0.3977775857451761,
|
187 |
+
"chrf": 57.672913792439125,
|
188 |
"commonvoice_hours": 422.0,
|
189 |
"commonvoice_locale": "zh-TW",
|
190 |
"population": {
|
|
|
217 |
"scores": [
|
218 |
{
|
219 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
220 |
+
"bleu": 0.333521621016373,
|
221 |
+
"chrf": 50.48364584189306
|
222 |
}
|
223 |
],
|
224 |
+
"bleu": 0.333521621016373,
|
225 |
+
"chrf": 50.48364584189306,
|
226 |
"commonvoice_hours": 16.0,
|
227 |
"commonvoice_locale": "hi-IN",
|
228 |
"population": {
|
|
|
241 |
"scores": [
|
242 |
{
|
243 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
244 |
+
"bleu": 0.29160032861883095,
|
245 |
+
"chrf": 47.668399832701844
|
246 |
}
|
247 |
],
|
248 |
+
"bleu": 0.29160032861883095,
|
249 |
+
"chrf": 47.668399832701844,
|
250 |
"commonvoice_hours": 446.0,
|
251 |
"commonvoice_locale": "es",
|
252 |
"population": {
|
|
|
298 |
"scores": [
|
299 |
{
|
300 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
301 |
+
"bleu": 0.277257629790728,
|
302 |
+
"chrf": 46.62779335380641
|
303 |
}
|
304 |
],
|
305 |
+
"bleu": 0.277257629790728,
|
306 |
+
"chrf": 46.62779335380641,
|
307 |
"commonvoice_hours": 91.0,
|
308 |
"commonvoice_locale": "ar",
|
309 |
"population": {
|
|
|
354 |
"scores": [
|
355 |
{
|
356 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
357 |
+
"bleu": 0.2659144372728079,
|
358 |
+
"chrf": 44.14831240898717
|
359 |
}
|
360 |
],
|
361 |
+
"bleu": 0.2659144372728079,
|
362 |
+
"chrf": 44.14831240898717,
|
363 |
"commonvoice_hours": 76.0,
|
364 |
"commonvoice_locale": "ur",
|
365 |
"population": {
|
|
|
377 |
"scores": [
|
378 |
{
|
379 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
380 |
+
"bleu": 0.315663773358301,
|
381 |
+
"chrf": 49.253978669350964
|
382 |
}
|
383 |
],
|
384 |
+
"bleu": 0.315663773358301,
|
385 |
+
"chrf": 49.253978669350964,
|
386 |
+
"commonvoice_hours": 1052.0,
|
387 |
"commonvoice_locale": "fr",
|
388 |
"population": {
|
389 |
"AD": 5775,
|
|
|
457 |
"scores": [
|
458 |
{
|
459 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
460 |
+
"bleu": 0.21265887286151353,
|
461 |
+
"chrf": 41.501657722373686
|
462 |
}
|
463 |
],
|
464 |
+
"bleu": 0.21265887286151353,
|
465 |
+
"chrf": 41.501657722373686,
|
466 |
"commonvoice_hours": 49.0,
|
467 |
"commonvoice_locale": "bn",
|
468 |
"population": {
|
|
|
480 |
"scores": [
|
481 |
{
|
482 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
483 |
+
"bleu": 0.27514792195783394,
|
484 |
+
"chrf": 45.901248962808694
|
485 |
}
|
486 |
],
|
487 |
+
"bleu": 0.27514792195783394,
|
488 |
+
"chrf": 45.901248962808694,
|
489 |
"commonvoice_hours": 176.0,
|
490 |
"commonvoice_locale": "pt",
|
491 |
"population": {
|
|
|
514 |
"scores": [
|
515 |
{
|
516 |
"model": "openai/gpt-4o-mini",
|
517 |
+
"bleu": 0.32250608979374484,
|
518 |
+
"chrf": 48.43043110055342
|
519 |
},
|
520 |
{
|
521 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
522 |
+
"bleu": 0.3048037308116852,
|
523 |
+
"chrf": 48.4304965568793
|
524 |
},
|
525 |
{
|
526 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
527 |
+
"bleu": 0.2314793285308931,
|
528 |
+
"chrf": 37.53667069805556
|
529 |
},
|
530 |
{
|
531 |
"model": "google/gemini-2.0-flash-001",
|
532 |
+
"bleu": 0.37468960333154994,
|
533 |
+
"chrf": 53.381398796420086
|
534 |
},
|
535 |
{
|
536 |
"model": "deepseek/deepseek-chat",
|
537 |
+
"bleu": 0.359056244961623,
|
538 |
+
"chrf": 52.278269268214366
|
539 |
},
|
540 |
{
|
541 |
"model": "microsoft/phi-4",
|
542 |
+
"bleu": 0.27331521881795146,
|
543 |
+
"chrf": 45.15087304059057
|
544 |
}
|
545 |
],
|
546 |
+
"bleu": 0.31097503604124127,
|
547 |
+
"chrf": 47.53468991011888,
|
548 |
"commonvoice_hours": 2.3,
|
549 |
"commonvoice_locale": "pa-IN",
|
550 |
"population": {
|
|
|
563 |
"scores": [
|
564 |
{
|
565 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
566 |
+
"bleu": 0.26108507692625094,
|
567 |
+
"chrf": 45.063308940468154
|
568 |
}
|
569 |
],
|
570 |
+
"bleu": 0.26108507692625094,
|
571 |
+
"chrf": 45.063308940468154,
|
572 |
"commonvoice_hours": 241.0,
|
573 |
"commonvoice_locale": "ru",
|
574 |
"population": {
|
|
|
604 |
"scores": [
|
605 |
{
|
606 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
607 |
+
"bleu": 0.2709203338132304,
|
608 |
+
"chrf": 44.36399636969686
|
609 |
}
|
610 |
],
|
611 |
+
"bleu": 0.2709203338132304,
|
612 |
+
"chrf": 44.36399636969686,
|
613 |
"commonvoice_hours": 411.0,
|
614 |
"commonvoice_locale": "sw",
|
615 |
"population": {
|
|
|
631 |
"scores": [
|
632 |
{
|
633 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
634 |
+
"bleu": 0.27441353638286026,
|
635 |
+
"chrf": 46.025445629112156
|
636 |
}
|
637 |
],
|
638 |
+
"bleu": 0.27441353638286026,
|
639 |
+
"chrf": 46.025445629112156,
|
640 |
"commonvoice_hours": 33.0,
|
641 |
"commonvoice_locale": "id",
|
642 |
"population": {
|
|
|
651 |
"scores": [
|
652 |
{
|
653 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
654 |
+
"bleu": 0.3338682761061998,
|
655 |
+
"chrf": 50.216731068308064
|
656 |
}
|
657 |
],
|
658 |
+
"bleu": 0.3338682761061998,
|
659 |
+
"chrf": 50.216731068308064,
|
660 |
"commonvoice_hours": 1357.0,
|
661 |
"commonvoice_locale": "de",
|
662 |
"population": {
|
|
|
696 |
"scores": [
|
697 |
{
|
698 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
699 |
+
"bleu": 0.2940100667664714,
|
700 |
+
"chrf": 46.403097021492236
|
701 |
}
|
702 |
],
|
703 |
+
"bleu": 0.2940100667664714,
|
704 |
+
"chrf": 46.403097021492236,
|
705 |
"commonvoice_hours": 222.0,
|
706 |
"commonvoice_locale": "ja",
|
707 |
"population": {
|
|
|
717 |
"scores": [
|
718 |
{
|
719 |
"model": "openai/gpt-4o-mini",
|
720 |
+
"bleu": 0.28964452051612244,
|
721 |
+
"chrf": 45.75290973782886
|
722 |
},
|
723 |
{
|
724 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
725 |
+
"bleu": 0.2750887189010237,
|
726 |
+
"chrf": 46.31463752811596
|
727 |
},
|
728 |
{
|
729 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
730 |
+
"bleu": 0.1314237858560668,
|
731 |
+
"chrf": 27.750433857144273
|
732 |
},
|
733 |
{
|
734 |
"model": "google/gemini-2.0-flash-001",
|
735 |
+
"bleu": 0.35187073123584545,
|
736 |
+
"chrf": 52.04190885735586
|
737 |
},
|
738 |
{
|
739 |
"model": "deepseek/deepseek-chat",
|
740 |
+
"bleu": 0.2808664068178743,
|
741 |
+
"chrf": 48.221979700718
|
742 |
},
|
743 |
{
|
744 |
"model": "microsoft/phi-4",
|
745 |
+
"bleu": 0.16468103557770178,
|
746 |
+
"chrf": 36.43981433605732
|
747 |
}
|
748 |
],
|
749 |
+
"bleu": 0.24892919981743908,
|
750 |
+
"chrf": 42.75361400287005,
|
751 |
"commonvoice_hours": 0.3,
|
752 |
"commonvoice_locale": "te",
|
753 |
"population": {
|
|
|
761 |
"scores": [
|
762 |
{
|
763 |
"model": "openai/gpt-4o-mini",
|
764 |
+
"bleu": 0.235200323237626,
|
765 |
+
"chrf": 39.43789667749676
|
766 |
},
|
767 |
{
|
768 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
769 |
+
"bleu": 0.2584800238292114,
|
770 |
+
"chrf": 44.69889855306244
|
771 |
},
|
772 |
{
|
773 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
774 |
+
"bleu": 0.1158656438579424,
|
775 |
+
"chrf": 27.118712681006436
|
776 |
},
|
777 |
{
|
778 |
"model": "google/gemini-2.0-flash-001",
|
779 |
+
"bleu": 0.3039098126596327,
|
780 |
+
"chrf": 48.26657289026638
|
781 |
},
|
782 |
{
|
783 |
"model": "deepseek/deepseek-chat",
|
784 |
+
"bleu": 0.23702154369195902,
|
785 |
+
"chrf": 43.039588362590955
|
786 |
},
|
787 |
{
|
788 |
"model": "microsoft/phi-4",
|
789 |
+
"bleu": 0.14770612974379574,
|
790 |
+
"chrf": 35.63558588907277
|
791 |
}
|
792 |
],
|
793 |
+
"bleu": 0.21636391283669454,
|
794 |
+
"chrf": 39.69954250891596,
|
795 |
"commonvoice_hours": 20.0,
|
796 |
"commonvoice_locale": "mr",
|
797 |
"population": {
|
|
|
805 |
"scores": [
|
806 |
{
|
807 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
808 |
+
"bleu": 0.23082586428104943,
|
809 |
+
"chrf": 41.42591471734489
|
810 |
}
|
811 |
],
|
812 |
+
"bleu": 0.23082586428104943,
|
813 |
+
"chrf": 41.42591471734489,
|
814 |
"commonvoice_hours": 0.0,
|
815 |
"commonvoice_locale": "jv",
|
816 |
"population": {
|
|
|
825 |
"scores": [
|
826 |
{
|
827 |
"model": "openai/gpt-4o-mini",
|
828 |
+
"bleu": 0.2790022403255029,
|
829 |
+
"chrf": 44.76577365559692
|
830 |
},
|
831 |
{
|
832 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
833 |
+
"bleu": 0.252552287345529,
|
834 |
+
"chrf": 43.351007120897606
|
835 |
},
|
836 |
{
|
837 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
838 |
+
"bleu": 0.17142561681893811,
|
839 |
+
"chrf": 34.23876708175754
|
840 |
},
|
841 |
{
|
842 |
"model": "google/gemini-2.0-flash-001",
|
843 |
+
"bleu": 0.32076560886563743,
|
844 |
+
"chrf": 49.46269756420099
|
845 |
},
|
846 |
{
|
847 |
"model": "deepseek/deepseek-chat",
|
848 |
+
"bleu": 0.269842412561934,
|
849 |
+
"chrf": 44.17252674642975
|
850 |
},
|
851 |
{
|
852 |
"model": "microsoft/phi-4",
|
853 |
+
"bleu": 0.19118351096728373,
|
854 |
+
"chrf": 37.642090247027234
|
855 |
}
|
856 |
],
|
857 |
+
"bleu": 0.24746194614747083,
|
858 |
+
"chrf": 42.272143735985004,
|
859 |
"commonvoice_hours": 5.9,
|
860 |
"commonvoice_locale": "vi",
|
861 |
"population": {
|
|
|
872 |
"scores": [
|
873 |
{
|
874 |
"model": "openai/gpt-4o-mini",
|
875 |
+
"bleu": 0.2159676106476219,
|
876 |
+
"chrf": 38.592451568525966
|
877 |
},
|
878 |
{
|
879 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
880 |
+
"bleu": 0.24147470924504938,
|
881 |
+
"chrf": 41.98664320436057
|
882 |
},
|
883 |
{
|
884 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
885 |
+
"bleu": 0.11055269618146167,
|
886 |
+
"chrf": 26.929660798631293
|
887 |
},
|
888 |
{
|
889 |
"model": "google/gemini-2.0-flash-001",
|
890 |
+
"bleu": 0.2993653070835946,
|
891 |
+
"chrf": 46.760725728832945
|
892 |
},
|
893 |
{
|
894 |
"model": "deepseek/deepseek-chat",
|
895 |
+
"bleu": 0.22772498517043588,
|
896 |
+
"chrf": 40.963440857462984
|
897 |
},
|
898 |
{
|
899 |
"model": "microsoft/phi-4",
|
900 |
+
"bleu": 0.14949134449145374,
|
901 |
+
"chrf": 33.188135588116566
|
902 |
}
|
903 |
],
|
904 |
+
"bleu": 0.2074294421366029,
|
905 |
+
"chrf": 38.07017629098839,
|
906 |
"commonvoice_hours": 234.0,
|
907 |
"commonvoice_locale": "ta",
|
908 |
"population": {
|
|
|
923 |
"scores": [
|
924 |
{
|
925 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
926 |
+
"bleu": 0.2543274430452483,
|
927 |
+
"chrf": 44.798186786819564
|
928 |
}
|
929 |
],
|
930 |
+
"bleu": 0.2543274430452483,
|
931 |
+
"chrf": 44.798186786819564,
|
932 |
"commonvoice_hours": 370.0,
|
933 |
"commonvoice_locale": "fa",
|
934 |
"population": {
|
|
|
950 |
"scores": [
|
951 |
{
|
952 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
953 |
+
"bleu": 0.2848412390293461,
|
954 |
+
"chrf": 45.023438128876236
|
955 |
}
|
956 |
],
|
957 |
+
"bleu": 0.2848412390293461,
|
958 |
+
"chrf": 45.023438128876236,
|
959 |
"commonvoice_hours": 127.0,
|
960 |
"commonvoice_locale": "tr",
|
961 |
"population": {
|
|
|
980 |
"scores": [
|
981 |
{
|
982 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
983 |
+
"bleu": 0.2745324223697869,
|
984 |
+
"chrf": 46.18505717482203
|
985 |
}
|
986 |
],
|
987 |
+
"bleu": 0.2745324223697869,
|
988 |
+
"chrf": 46.18505717482203,
|
989 |
"commonvoice_hours": 203.0,
|
990 |
"commonvoice_locale": "yue",
|
991 |
"population": {
|
|
|
1001 |
"scores": [
|
1002 |
{
|
1003 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1004 |
+
"bleu": 0.21423807187509414,
|
1005 |
+
"chrf": 42.31955622695572
|
1006 |
}
|
1007 |
],
|
1008 |
+
"bleu": 0.21423807187509414,
|
1009 |
+
"chrf": 42.31955622695572,
|
1010 |
"commonvoice_hours": 1.7,
|
1011 |
"commonvoice_locale": "ko",
|
1012 |
"population": {
|
|
|
1026 |
"scores": [
|
1027 |
{
|
1028 |
"model": "openai/gpt-4o-mini",
|
1029 |
+
"bleu": 0.29744196180619636,
|
1030 |
+
"chrf": 46.58884190721562
|
1031 |
},
|
1032 |
{
|
1033 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1034 |
+
"bleu": 0.2947459489130278,
|
1035 |
+
"chrf": 48.23578446556176
|
1036 |
},
|
1037 |
{
|
1038 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
1039 |
+
"bleu": 0.26709213193768344,
|
1040 |
+
"chrf": 43.42719841351614
|
1041 |
},
|
1042 |
{
|
1043 |
"model": "google/gemini-2.0-flash-001",
|
1044 |
+
"bleu": 0.34518602347709243,
|
1045 |
+
"chrf": 51.45922256128821
|
1046 |
},
|
1047 |
{
|
1048 |
"model": "deepseek/deepseek-chat",
|
1049 |
+
"bleu": 0.3136120219290237,
|
1050 |
+
"chrf": 49.456527591725454
|
1051 |
},
|
1052 |
{
|
1053 |
"model": "microsoft/phi-4",
|
1054 |
+
"bleu": 0.26629405288011837,
|
1055 |
+
"chrf": 44.95821657057411
|
1056 |
}
|
1057 |
],
|
1058 |
+
"bleu": 0.29739535682385704,
|
1059 |
+
"chrf": 47.35429858498022,
|
1060 |
"commonvoice_hours": 362.0,
|
1061 |
"commonvoice_locale": "it",
|
1062 |
"population": {
|
|
|
1084 |
"scores": [
|
1085 |
{
|
1086 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1087 |
+
"bleu": 0.3020075248846111,
|
1088 |
+
"chrf": 45.148692233744825
|
1089 |
}
|
1090 |
],
|
1091 |
+
"bleu": 0.3020075248846111,
|
1092 |
+
"chrf": 45.148692233744825,
|
1093 |
"commonvoice_hours": 0.0,
|
1094 |
"commonvoice_locale": "tl",
|
1095 |
"population": {
|
|
|
1105 |
"scores": [
|
1106 |
{
|
1107 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1108 |
+
"bleu": 0.18353324091064518,
|
1109 |
+
"chrf": 37.67362087042454
|
1110 |
}
|
1111 |
],
|
1112 |
+
"bleu": 0.18353324091064518,
|
1113 |
+
"chrf": 37.67362087042454,
|
1114 |
"commonvoice_hours": null,
|
1115 |
"commonvoice_locale": null,
|
1116 |
"population": {
|
|
|
1124 |
"scores": [
|
1125 |
{
|
1126 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1127 |
+
"bleu": 0.27618486571036477,
|
1128 |
+
"chrf": 45.30697533607047
|
1129 |
}
|
1130 |
],
|
1131 |
+
"bleu": 0.27618486571036477,
|
1132 |
+
"chrf": 45.30697533607047,
|
1133 |
"commonvoice_hours": 0.0,
|
1134 |
"commonvoice_locale": "gu-IN",
|
1135 |
"population": {
|
|
|
1146 |
"scores": [
|
1147 |
{
|
1148 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1149 |
+
"bleu": 0.2461561900137243,
|
1150 |
+
"chrf": 43.886996888191135
|
1151 |
}
|
1152 |
],
|
1153 |
"bleu": 0.2461561900137243,
|
1154 |
+
"chrf": 43.886996888191135,
|
1155 |
"commonvoice_hours": 172.0,
|
1156 |
"commonvoice_locale": "th",
|
1157 |
"population": {
|
|
|
1165 |
"scores": [
|
1166 |
{
|
1167 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1168 |
+
"bleu": 0.25650866519447973,
|
1169 |
+
"chrf": 43.53706086839864
|
1170 |
}
|
1171 |
],
|
1172 |
"bleu": 0.25650866519447973,
|
1173 |
+
"chrf": 43.53706086839864,
|
1174 |
"commonvoice_hours": 0.0,
|
1175 |
"commonvoice_locale": "kn",
|
1176 |
"population": {
|
|
|
1184 |
"scores": [
|
1185 |
{
|
1186 |
"model": "openai/gpt-4o-mini",
|
1187 |
+
"bleu": 0.23073727076678055,
|
1188 |
+
"chrf": 41.53402359471923
|
1189 |
},
|
1190 |
{
|
1191 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1192 |
+
"bleu": 0.21782657144614825,
|
1193 |
+
"chrf": 41.630569782738704
|
1194 |
},
|
1195 |
{
|
1196 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
1197 |
+
"bleu": 0.1695641998407403,
|
1198 |
+
"chrf": 33.20242503336964
|
1199 |
},
|
1200 |
{
|
1201 |
"model": "google/gemini-2.0-flash-001",
|
1202 |
+
"bleu": 0.3195014249623395,
|
1203 |
+
"chrf": 50.399254960139395
|
1204 |
},
|
1205 |
{
|
1206 |
"model": "deepseek/deepseek-chat",
|
1207 |
+
"bleu": 0.2633223158501049,
|
1208 |
+
"chrf": 45.473592535604965
|
1209 |
},
|
1210 |
{
|
1211 |
"model": "microsoft/phi-4",
|
1212 |
+
"bleu": 0.19162873119255258,
|
1213 |
+
"chrf": 38.21485785002488
|
1214 |
}
|
1215 |
],
|
1216 |
"bleu": 0.23209675234311103,
|
1217 |
+
"chrf": 41.7424539594328,
|
1218 |
"commonvoice_hours": 2.8,
|
1219 |
"commonvoice_locale": "ml",
|
1220 |
"population": {
|
|
|
1234 |
"scores": [
|
1235 |
{
|
1236 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1237 |
+
"bleu": 0.2616054244059909,
|
1238 |
+
"chrf": 44.81898318236423
|
1239 |
}
|
1240 |
],
|
1241 |
"bleu": 0.2616054244059909,
|
1242 |
+
"chrf": 44.81898318236423,
|
1243 |
"commonvoice_hours": 2.8,
|
1244 |
"commonvoice_locale": "or",
|
1245 |
"population": {
|
|
|
1253 |
"scores": [
|
1254 |
{
|
1255 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1256 |
+
"bleu": 0.24382878885531348,
|
1257 |
+
"chrf": 43.88802125000008
|
1258 |
}
|
1259 |
],
|
1260 |
"bleu": 0.24382878885531348,
|
1261 |
+
"chrf": 43.88802125000008,
|
1262 |
"commonvoice_hours": 174.0,
|
1263 |
"commonvoice_locale": "pl",
|
1264 |
"population": {
|
|
|
1280 |
"scores": [
|
1281 |
{
|
1282 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1283 |
+
"bleu": 0.1493358875548207,
|
1284 |
+
"chrf": 31.734228520521885
|
1285 |
}
|
1286 |
],
|
1287 |
"bleu": 0.1493358875548207,
|
1288 |
+
"chrf": 31.734228520521885,
|
1289 |
"commonvoice_hours": 4.1,
|
1290 |
"commonvoice_locale": "ha",
|
1291 |
"population": {
|
|
|
1303 |
"scores": [
|
1304 |
{
|
1305 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1306 |
+
"bleu": 0.22524971121549384,
|
1307 |
+
"chrf": 41.35718488130492
|
1308 |
}
|
1309 |
],
|
1310 |
"bleu": 0.22524971121549384,
|
1311 |
+
"chrf": 41.35718488130492,
|
1312 |
"commonvoice_hours": 0.4,
|
1313 |
"commonvoice_locale": "sd",
|
1314 |
"population": {
|
|
|
1323 |
"scores": [
|
1324 |
{
|
1325 |
"model": "openai/gpt-4o-mini",
|
1326 |
+
"bleu": 0.27545115634664297,
|
1327 |
+
"chrf": 46.5366529956061
|
1328 |
},
|
1329 |
{
|
1330 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1331 |
+
"bleu": 0.2445459295400275,
|
1332 |
+
"chrf": 43.683725288188164
|
1333 |
},
|
1334 |
{
|
1335 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
1336 |
+
"bleu": 0.23380594556884363,
|
1337 |
+
"chrf": 38.09288562825641
|
1338 |
},
|
1339 |
{
|
1340 |
"model": "google/gemini-2.0-flash-001",
|
1341 |
+
"bleu": 0.3521510571182875,
|
1342 |
+
"chrf": 51.6107732437805
|
1343 |
},
|
1344 |
{
|
1345 |
"model": "deepseek/deepseek-chat",
|
1346 |
+
"bleu": 0.2984537737499322,
|
1347 |
+
"chrf": 47.07139912930323
|
1348 |
},
|
1349 |
{
|
1350 |
"model": "microsoft/phi-4",
|
1351 |
+
"bleu": 0.20974647653543713,
|
1352 |
+
"chrf": 40.94603982712764
|
1353 |
}
|
1354 |
],
|
1355 |
"bleu": 0.2690257231431951,
|
1356 |
+
"chrf": 44.656912685377016,
|
1357 |
"commonvoice_hours": 0.0,
|
1358 |
"commonvoice_locale": "ms",
|
1359 |
"population": {
|
|
|
1371 |
"scores": [
|
1372 |
{
|
1373 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1374 |
+
"bleu": 0.17529594258449108,
|
1375 |
+
"chrf": 38.09396067803311
|
1376 |
}
|
1377 |
],
|
1378 |
"bleu": 0.17529594258449108,
|
1379 |
+
"chrf": 38.09396067803311,
|
1380 |
"commonvoice_hours": 0.0,
|
1381 |
"commonvoice_locale": "my",
|
1382 |
"population": {
|
|
|
1391 |
"scores": [
|
1392 |
{
|
1393 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1394 |
+
"bleu": 0.16453710162389373,
|
1395 |
+
"chrf": 34.89886094698235
|
1396 |
}
|
1397 |
],
|
1398 |
"bleu": 0.16453710162389373,
|
1399 |
+
"chrf": 34.89886094698235,
|
1400 |
"commonvoice_hours": 1.8,
|
1401 |
"commonvoice_locale": "am",
|
1402 |
"population": {
|
|
|
1411 |
"scores": [
|
1412 |
{
|
1413 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1414 |
+
"bleu": 0.0691897827221633,
|
1415 |
+
"chrf": 22.166735299684706
|
1416 |
}
|
1417 |
],
|
1418 |
"bleu": 0.0691897827221633,
|
1419 |
+
"chrf": 22.166735299684706,
|
1420 |
"commonvoice_hours": 0.0,
|
1421 |
"commonvoice_locale": "om",
|
1422 |
"population": {
|
|
|
1432 |
"scores": [
|
1433 |
{
|
1434 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1435 |
+
"bleu": 0.23176648838308359,
|
1436 |
+
"chrf": 42.06617216025931
|
1437 |
}
|
1438 |
],
|
1439 |
"bleu": 0.23176648838308359,
|
1440 |
+
"chrf": 42.06617216025931,
|
1441 |
"commonvoice_hours": null,
|
1442 |
"commonvoice_locale": null,
|
1443 |
"population": {
|
|
|
1453 |
"scores": [
|
1454 |
{
|
1455 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1456 |
+
"bleu": 0.2038544554531401,
|
1457 |
+
"chrf": 39.8364082393657
|
1458 |
}
|
1459 |
],
|
1460 |
"bleu": 0.2038544554531401,
|
1461 |
+
"chrf": 39.8364082393657,
|
1462 |
"commonvoice_hours": 100.0,
|
1463 |
"commonvoice_locale": "uz",
|
1464 |
"population": {
|
|
|
1476 |
"scores": [
|
1477 |
{
|
1478 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1479 |
+
"bleu": 0.1911853993562902,
|
1480 |
+
"chrf": 38.284553121320506
|
1481 |
}
|
1482 |
],
|
1483 |
"bleu": 0.1911853993562902,
|
1484 |
+
"chrf": 38.284553121320506,
|
1485 |
"commonvoice_hours": 0.5,
|
1486 |
"commonvoice_locale": "az",
|
1487 |
"population": {
|
|
|
1500 |
"scores": [
|
1501 |
{
|
1502 |
"model": "openai/gpt-4o-mini",
|
1503 |
+
"bleu": 0.18638464691782505,
|
1504 |
+
"chrf": 36.390067106438586
|
1505 |
},
|
1506 |
{
|
1507 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1508 |
+
"bleu": 0.22413489641063433,
|
1509 |
+
"chrf": 39.08607675576149
|
1510 |
},
|
1511 |
{
|
1512 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
1513 |
+
"bleu": 0.12396443500389862,
|
1514 |
+
"chrf": 27.44605100630464
|
1515 |
},
|
1516 |
{
|
1517 |
"model": "google/gemini-2.0-flash-001",
|
1518 |
+
"bleu": 0.31100961611618916,
|
1519 |
+
"chrf": 48.684591434160616
|
1520 |
},
|
1521 |
{
|
1522 |
"model": "deepseek/deepseek-chat",
|
1523 |
+
"bleu": 0.23467068441612768,
|
1524 |
+
"chrf": 40.54860164135514
|
1525 |
},
|
1526 |
{
|
1527 |
"model": "microsoft/phi-4",
|
1528 |
+
"bleu": 0.1315217916431994,
|
1529 |
+
"chrf": 32.71394871178255
|
1530 |
}
|
1531 |
],
|
1532 |
"bleu": 0.20194767841797903,
|
1533 |
+
"chrf": 37.47822277596717,
|
1534 |
"commonvoice_hours": null,
|
1535 |
"commonvoice_locale": null,
|
1536 |
"population": {
|
|
|
1544 |
"scores": [
|
1545 |
{
|
1546 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1547 |
+
"bleu": 0.2592795402705898,
|
1548 |
+
"chrf": 44.356739380497835
|
1549 |
}
|
1550 |
],
|
1551 |
"bleu": 0.2592795402705898,
|
1552 |
+
"chrf": 44.356739380497835,
|
1553 |
"commonvoice_hours": 114.0,
|
1554 |
"commonvoice_locale": "nl",
|
1555 |
"population": {
|
|
|
1572 |
"scores": [
|
1573 |
{
|
1574 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1575 |
+
"bleu": 0.1795140543637709,
|
1576 |
+
"chrf": 37.426822543484725
|
1577 |
}
|
1578 |
],
|
1579 |
"bleu": 0.1795140543637709,
|
1580 |
+
"chrf": 37.426822543484725,
|
1581 |
"commonvoice_hours": null,
|
1582 |
"commonvoice_locale": null,
|
1583 |
"population": {
|
|
|
1591 |
"scores": [
|
1592 |
{
|
1593 |
"model": "openai/gpt-4o-mini",
|
1594 |
+
"bleu": 0.2564463888571809,
|
1595 |
+
"chrf": 41.5181715644979
|
1596 |
},
|
1597 |
{
|
1598 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1599 |
+
"bleu": 0.2922812040972885,
|
1600 |
+
"chrf": 46.82127627710616
|
1601 |
},
|
1602 |
{
|
1603 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
1604 |
+
"bleu": 0.24225796102393954,
|
1605 |
+
"chrf": 39.42058485499366
|
1606 |
},
|
1607 |
{
|
1608 |
"model": "google/gemini-2.0-flash-001",
|
1609 |
+
"bleu": 0.3452563778145038,
|
1610 |
+
"chrf": 50.96771482708702
|
1611 |
},
|
1612 |
{
|
1613 |
"model": "deepseek/deepseek-chat",
|
1614 |
+
"bleu": 0.3292127494173498,
|
1615 |
+
"chrf": 48.580427643849056
|
1616 |
},
|
1617 |
{
|
1618 |
"model": "microsoft/phi-4",
|
1619 |
+
"bleu": 0.2452825737163755,
|
1620 |
+
"chrf": 42.05493360532406
|
1621 |
}
|
1622 |
],
|
1623 |
"bleu": 0.28512287582110635,
|
1624 |
+
"chrf": 44.893851462142976,
|
1625 |
"commonvoice_hours": 98.0,
|
1626 |
"commonvoice_locale": "uk",
|
1627 |
"population": {
|
|
|
1640 |
"scores": [
|
1641 |
{
|
1642 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1643 |
+
"bleu": 0.09852676389614487,
|
1644 |
+
"chrf": 25.656950226425916
|
1645 |
}
|
1646 |
],
|
1647 |
"bleu": 0.09852676389614487,
|
1648 |
+
"chrf": 25.656950226425916,
|
1649 |
"commonvoice_hours": 5.9,
|
1650 |
"commonvoice_locale": "yo",
|
1651 |
"population": {
|
|
|
1660 |
"scores": [
|
1661 |
{
|
1662 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1663 |
+
"bleu": 0.1549827013842116,
|
1664 |
+
"chrf": 35.431035675871804
|
1665 |
}
|
1666 |
],
|
1667 |
"bleu": 0.1549827013842116,
|
1668 |
+
"chrf": 35.431035675871804,
|
1669 |
"commonvoice_hours": 0.0,
|
1670 |
"commonvoice_locale": "ig",
|
1671 |
"population": {
|
|
|
1679 |
"scores": [
|
1680 |
{
|
1681 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1682 |
+
"bleu": 0.27783470672988303,
|
1683 |
+
"chrf": 43.53549785827671
|
1684 |
}
|
1685 |
],
|
1686 |
"bleu": 0.27783470672988303,
|
1687 |
+
"chrf": 43.53549785827671,
|
1688 |
"commonvoice_hours": null,
|
1689 |
"commonvoice_locale": null,
|
1690 |
"population": {
|
|
|
1698 |
"scores": [
|
1699 |
{
|
1700 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1701 |
+
"bleu": 0.2554810263222905,
|
1702 |
+
"chrf": 42.35795046006446
|
1703 |
}
|
1704 |
],
|
1705 |
"bleu": 0.2554810263222905,
|
1706 |
+
"chrf": 42.35795046006446,
|
1707 |
"commonvoice_hours": null,
|
1708 |
"commonvoice_locale": null,
|
1709 |
"population": {
|
|
|
1718 |
"scores": [
|
1719 |
{
|
1720 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1721 |
+
"bleu": 0.15163299980391426,
|
1722 |
+
"chrf": 32.41299083831688
|
1723 |
}
|
1724 |
],
|
1725 |
"bleu": 0.15163299980391426,
|
1726 |
+
"chrf": 32.41299083831688,
|
1727 |
"commonvoice_hours": 0.0,
|
1728 |
"commonvoice_locale": "mg",
|
1729 |
"population": {
|
|
|
1737 |
"scores": [
|
1738 |
{
|
1739 |
"model": "openai/gpt-4o-mini",
|
1740 |
+
"bleu": 0.33899025568959984,
|
1741 |
+
"chrf": 49.419389839471826
|
1742 |
},
|
1743 |
{
|
1744 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1745 |
+
"bleu": 0.26666997541189236,
|
1746 |
+
"chrf": 44.76525386460237
|
1747 |
},
|
1748 |
{
|
1749 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
1750 |
+
"bleu": 0.24172488724041316,
|
1751 |
+
"chrf": 37.98045602918644
|
1752 |
},
|
1753 |
{
|
1754 |
"model": "google/gemini-2.0-flash-001",
|
1755 |
+
"bleu": 0.37365302832845815,
|
1756 |
+
"chrf": 52.777299654432
|
1757 |
},
|
1758 |
{
|
1759 |
"model": "deepseek/deepseek-chat",
|
1760 |
+
"bleu": 0.332600965807992,
|
1761 |
+
"chrf": 49.14582652136321
|
1762 |
},
|
1763 |
{
|
1764 |
"model": "microsoft/phi-4",
|
1765 |
+
"bleu": 0.2510789925018768,
|
1766 |
+
"chrf": 42.27877315264307
|
1767 |
}
|
1768 |
],
|
1769 |
"bleu": 0.30078635083003874,
|
1770 |
+
"chrf": 46.06116651028316,
|
1771 |
"commonvoice_hours": 21.0,
|
1772 |
"commonvoice_locale": "ro",
|
1773 |
"population": {
|
|
|
1787 |
"scores": [
|
1788 |
{
|
1789 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1790 |
+
"bleu": 0.26199282928489126,
|
1791 |
+
"chrf": 44.7560662712792
|
1792 |
}
|
1793 |
],
|
1794 |
"bleu": 0.26199282928489126,
|
1795 |
+
"chrf": 44.7560662712792,
|
1796 |
"commonvoice_hours": 1.3,
|
1797 |
"commonvoice_locale": "ne-NP",
|
1798 |
"population": {
|
|
|
1808 |
"scores": [
|
1809 |
{
|
1810 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1811 |
+
"bleu": 0.23975507119180453,
|
1812 |
+
"chrf": 41.8894484718934
|
1813 |
}
|
1814 |
],
|
1815 |
"bleu": 0.23975507119180453,
|
1816 |
+
"chrf": 41.8894484718934,
|
1817 |
"commonvoice_hours": 0.0,
|
1818 |
"commonvoice_locale": "mai",
|
1819 |
"population": {
|
|
|
1828 |
"scores": [
|
1829 |
{
|
1830 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1831 |
+
"bleu": 0.19363225565136952,
|
1832 |
+
"chrf": 38.96237165376663
|
1833 |
}
|
1834 |
],
|
1835 |
"bleu": 0.19363225565136952,
|
1836 |
+
"chrf": 38.96237165376663,
|
1837 |
"commonvoice_hours": 2.8,
|
1838 |
"commonvoice_locale": "as",
|
1839 |
"population": {
|
|
|
1847 |
"scores": [
|
1848 |
{
|
1849 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1850 |
+
"bleu": 0.09504458945778768,
|
1851 |
+
"chrf": 27.576030002164906
|
1852 |
}
|
1853 |
],
|
1854 |
"bleu": 0.09504458945778768,
|
1855 |
+
"chrf": 27.576030002164906,
|
1856 |
"commonvoice_hours": 0.0,
|
1857 |
"commonvoice_locale": "ny",
|
1858 |
"population": {
|
|
|
1869 |
"scores": [
|
1870 |
{
|
1871 |
"model": "openai/gpt-4o-mini",
|
1872 |
+
"bleu": 0.2024994684991584,
|
1873 |
+
"chrf": 37.37281822856629
|
1874 |
},
|
1875 |
{
|
1876 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1877 |
+
"bleu": 0.1532133716194419,
|
1878 |
+
"chrf": 32.05620028647162
|
1879 |
},
|
1880 |
{
|
1881 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
1882 |
+
"bleu": 0.043408496427191995,
|
1883 |
+
"chrf": 15.267715935014895
|
1884 |
},
|
1885 |
{
|
1886 |
"model": "google/gemini-2.0-flash-001",
|
1887 |
+
"bleu": 0.3048371831537258,
|
1888 |
+
"chrf": 46.24092673305936
|
1889 |
},
|
1890 |
{
|
1891 |
"model": "deepseek/deepseek-chat",
|
1892 |
+
"bleu": 0.21360545410615966,
|
1893 |
+
"chrf": 38.32357547187653
|
1894 |
},
|
1895 |
{
|
1896 |
"model": "microsoft/phi-4",
|
1897 |
+
"bleu": 0.06484340154849859,
|
1898 |
+
"chrf": 22.781181465233722
|
1899 |
}
|
1900 |
],
|
1901 |
"bleu": 0.16373456255902938,
|
1902 |
+
"chrf": 32.00706968670374,
|
1903 |
"commonvoice_hours": 0.0,
|
1904 |
"commonvoice_locale": "so",
|
1905 |
"population": {
|
|
|
1918 |
"scores": [
|
1919 |
{
|
1920 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1921 |
+
"bleu": 0.29925558767802407,
|
1922 |
+
"chrf": 47.539870710677974
|
1923 |
}
|
1924 |
],
|
1925 |
"bleu": 0.29925558767802407,
|
1926 |
+
"chrf": 47.539870710677974,
|
1927 |
"commonvoice_hours": null,
|
1928 |
"commonvoice_locale": null,
|
1929 |
"population": {
|
|
|
1937 |
"scores": [
|
1938 |
{
|
1939 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1940 |
+
"bleu": 0.26029402164210574,
|
1941 |
+
"chrf": 44.75391848259974
|
1942 |
}
|
1943 |
],
|
1944 |
"bleu": 0.26029402164210574,
|
1945 |
+
"chrf": 44.75391848259974,
|
1946 |
"commonvoice_hours": 7.4,
|
1947 |
"commonvoice_locale": "sr",
|
1948 |
"population": {
|
|
|
1963 |
"scores": [
|
1964 |
{
|
1965 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1966 |
+
"bleu": 0.20259734060180434,
|
1967 |
+
"chrf": 39.00188422851495
|
1968 |
}
|
1969 |
],
|
1970 |
"bleu": 0.20259734060180434,
|
1971 |
+
"chrf": 39.00188422851495,
|
1972 |
"commonvoice_hours": 0.0,
|
1973 |
"commonvoice_locale": "si",
|
1974 |
"population": {
|
|
|
1982 |
"scores": [
|
1983 |
{
|
1984 |
"model": "openai/gpt-4o-mini",
|
1985 |
+
"bleu": 0.21699232146684352,
|
1986 |
+
"chrf": 41.99979148031644
|
1987 |
},
|
1988 |
{
|
1989 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
1990 |
+
"bleu": 0.21417349432612984,
|
1991 |
+
"chrf": 41.35771196976409
|
1992 |
},
|
1993 |
{
|
1994 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
1995 |
+
"bleu": 0.03287369352293625,
|
1996 |
+
"chrf": 14.140423341647319
|
1997 |
},
|
1998 |
{
|
1999 |
"model": "google/gemini-2.0-flash-001",
|
2000 |
+
"bleu": 0.34264229339556035,
|
2001 |
+
"chrf": 51.55826045210756
|
2002 |
},
|
2003 |
{
|
2004 |
"model": "deepseek/deepseek-chat",
|
2005 |
+
"bleu": 0.24630515818736093,
|
2006 |
+
"chrf": 44.60963216433486
|
2007 |
},
|
2008 |
{
|
2009 |
"model": "microsoft/phi-4",
|
2010 |
+
"bleu": 0.11830648687368288,
|
2011 |
+
"chrf": 31.534012306448343
|
2012 |
}
|
2013 |
],
|
2014 |
"bleu": 0.1952155746287523,
|
2015 |
+
"chrf": 37.53330528576977,
|
2016 |
"commonvoice_hours": 0.0,
|
2017 |
"commonvoice_locale": "km",
|
2018 |
"population": {
|
|
|
2026 |
"scores": [
|
2027 |
{
|
2028 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2029 |
+
"bleu": 0.2212498883000727,
|
2030 |
+
"chrf": 39.102114067893005
|
2031 |
}
|
2032 |
],
|
2033 |
"bleu": 0.2212498883000727,
|
2034 |
+
"chrf": 39.102114067893005,
|
2035 |
"commonvoice_hours": null,
|
2036 |
"commonvoice_locale": null,
|
2037 |
"population": {
|
|
|
2045 |
"scores": [
|
2046 |
{
|
2047 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2048 |
+
"bleu": 0.08190470208193343,
|
2049 |
+
"chrf": 23.041107899884107
|
2050 |
}
|
2051 |
],
|
2052 |
"bleu": 0.08190470208193343,
|
2053 |
+
"chrf": 23.041107899884107,
|
2054 |
"commonvoice_hours": null,
|
2055 |
"commonvoice_locale": null,
|
2056 |
"population": {
|
|
|
2064 |
"scores": [
|
2065 |
{
|
2066 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2067 |
+
"bleu": 0.15449146502209737,
|
2068 |
+
"chrf": 33.087212745906356
|
2069 |
}
|
2070 |
],
|
2071 |
"bleu": 0.15449146502209737,
|
2072 |
+
"chrf": 33.087212745906356,
|
2073 |
"commonvoice_hours": 0.0,
|
2074 |
"commonvoice_locale": "zu",
|
2075 |
"population": {
|
|
|
2087 |
"scores": [
|
2088 |
{
|
2089 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2090 |
+
"bleu": 0.2392246097188628,
|
2091 |
+
"chrf": 42.67763456362536
|
2092 |
}
|
2093 |
],
|
2094 |
"bleu": 0.2392246097188628,
|
2095 |
+
"chrf": 42.67763456362536,
|
2096 |
"commonvoice_hours": 2.1,
|
2097 |
"commonvoice_locale": "kk",
|
2098 |
"population": {
|
|
|
2111 |
"scores": [
|
2112 |
{
|
2113 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2114 |
+
"bleu": 0.2844520855192069,
|
2115 |
+
"chrf": 47.327010269160255
|
2116 |
}
|
2117 |
],
|
2118 |
"bleu": 0.2844520855192069,
|
2119 |
+
"chrf": 47.327010269160255,
|
2120 |
"commonvoice_hours": 74.0,
|
2121 |
"commonvoice_locale": "cs",
|
2122 |
"population": {
|
|
|
2131 |
"scores": [
|
2132 |
{
|
2133 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2134 |
+
"bleu": 0.31838456223051165,
|
2135 |
+
"chrf": 48.08041424667649
|
2136 |
}
|
2137 |
],
|
2138 |
"bleu": 0.31838456223051165,
|
2139 |
+
"chrf": 48.08041424667649,
|
2140 |
"commonvoice_hours": 47.0,
|
2141 |
"commonvoice_locale": "sv-SE",
|
2142 |
"population": {
|
|
|
2153 |
"scores": [
|
2154 |
{
|
2155 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2156 |
+
"bleu": 0.2517614908428288,
|
2157 |
+
"chrf": 42.77520440394925
|
2158 |
}
|
2159 |
],
|
2160 |
"bleu": 0.2517614908428288,
|
2161 |
+
"chrf": 42.77520440394925,
|
2162 |
"commonvoice_hours": 92.0,
|
2163 |
"commonvoice_locale": "hu",
|
2164 |
"population": {
|
|
|
2180 |
"scores": [
|
2181 |
{
|
2182 |
"model": "openai/gpt-4o-mini",
|
2183 |
+
"bleu": 0.24888370153898132,
|
2184 |
+
"chrf": 42.743109839531535
|
2185 |
},
|
2186 |
{
|
2187 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2188 |
+
"bleu": 0.27269196827838943,
|
2189 |
+
"chrf": 45.53483489961114
|
2190 |
},
|
2191 |
{
|
2192 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
2193 |
+
"bleu": 0.21351544070708506,
|
2194 |
+
"chrf": 39.64425368969459
|
2195 |
},
|
2196 |
{
|
2197 |
"model": "google/gemini-2.0-flash-001",
|
2198 |
+
"bleu": 0.3500489758234636,
|
2199 |
+
"chrf": 51.1729677922222
|
2200 |
},
|
2201 |
{
|
2202 |
"model": "deepseek/deepseek-chat",
|
2203 |
+
"bleu": 0.32858632704534785,
|
2204 |
+
"chrf": 49.70348294319061
|
2205 |
},
|
2206 |
{
|
2207 |
"model": "microsoft/phi-4",
|
2208 |
+
"bleu": 0.1903000734693107,
|
2209 |
+
"chrf": 39.41911092527115
|
2210 |
}
|
2211 |
],
|
2212 |
"bleu": 0.2673377478104297,
|
2213 |
+
"chrf": 44.7029600149202,
|
2214 |
"commonvoice_hours": 20.0,
|
2215 |
"commonvoice_locale": "el",
|
2216 |
"population": {
|
|
|
2233 |
"scores": [
|
2234 |
{
|
2235 |
"model": "openai/gpt-4o-mini",
|
2236 |
+
"bleu": 0.10438047654339373,
|
2237 |
+
"chrf": 28.358507205354343
|
2238 |
},
|
2239 |
{
|
2240 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2241 |
+
"bleu": 0.1054140213254438,
|
2242 |
+
"chrf": 28.275522446025796
|
2243 |
},
|
2244 |
{
|
2245 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
2246 |
+
"bleu": 0.049580893458705456,
|
2247 |
+
"chrf": 18.458313551880636
|
2248 |
},
|
2249 |
{
|
2250 |
"model": "google/gemini-2.0-flash-001",
|
2251 |
+
"bleu": 0.20979752102494492,
|
2252 |
+
"chrf": 38.7737276002067
|
2253 |
},
|
2254 |
{
|
2255 |
"model": "deepseek/deepseek-chat",
|
2256 |
+
"bleu": 0.14066476436038525,
|
2257 |
+
"chrf": 32.050887533047465
|
2258 |
},
|
2259 |
{
|
2260 |
"model": "microsoft/phi-4",
|
2261 |
+
"bleu": 0.060530921002659346,
|
2262 |
+
"chrf": 22.35054590384825
|
2263 |
}
|
2264 |
],
|
2265 |
"bleu": 0.11172809961925541,
|
2266 |
+
"chrf": 28.04458404006053,
|
2267 |
"commonvoice_hours": null,
|
2268 |
"commonvoice_locale": null,
|
2269 |
"population": {
|
|
|
2277 |
"scores": [
|
2278 |
{
|
2279 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2280 |
+
"bleu": 0.20654412682006296,
|
2281 |
+
"chrf": 38.66802600490074
|
2282 |
}
|
2283 |
],
|
2284 |
"bleu": 0.20654412682006296,
|
2285 |
+
"chrf": 38.66802600490074,
|
2286 |
"commonvoice_hours": 135.0,
|
2287 |
"commonvoice_locale": "ckb",
|
2288 |
"population": {
|
|
|
2297 |
"scores": [
|
2298 |
{
|
2299 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2300 |
+
"bleu": 0.14006909985587948,
|
2301 |
+
"chrf": 31.739340000779823
|
2302 |
}
|
2303 |
],
|
2304 |
"bleu": 0.14006909985587948,
|
2305 |
+
"chrf": 31.739340000779823,
|
2306 |
"commonvoice_hours": 2002.0,
|
2307 |
"commonvoice_locale": "rw",
|
2308 |
"population": {
|
|
|
2318 |
"scores": [
|
2319 |
{
|
2320 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2321 |
+
"bleu": 0.08408628490585719,
|
2322 |
+
"chrf": 23.767561072306325
|
2323 |
}
|
2324 |
],
|
2325 |
"bleu": 0.08408628490585719,
|
2326 |
+
"chrf": 23.767561072306325,
|
2327 |
"commonvoice_hours": 0.0,
|
2328 |
"commonvoice_locale": "wo",
|
2329 |
"population": {
|
|
|
2338 |
"scores": [
|
2339 |
{
|
2340 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2341 |
+
"bleu": 0.23738824104522893,
|
2342 |
+
"chrf": 42.85642541970995
|
2343 |
}
|
2344 |
],
|
2345 |
"bleu": 0.23738824104522893,
|
2346 |
+
"chrf": 42.85642541970995,
|
2347 |
"commonvoice_hours": null,
|
2348 |
"commonvoice_locale": null,
|
2349 |
"population": {
|
|
|
2357 |
"scores": [
|
2358 |
{
|
2359 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2360 |
+
"bleu": 0.20685666710862224,
|
2361 |
+
"chrf": 37.066073786659494
|
2362 |
}
|
2363 |
],
|
2364 |
"bleu": 0.20685666710862224,
|
2365 |
+
"chrf": 37.066073786659494,
|
2366 |
"commonvoice_hours": null,
|
2367 |
"commonvoice_locale": null,
|
2368 |
"population": {
|
|
|
2376 |
"scores": [
|
2377 |
{
|
2378 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2379 |
+
"bleu": 0.1143143326923908,
|
2380 |
+
"chrf": 28.93119601652647
|
2381 |
}
|
2382 |
],
|
2383 |
"bleu": 0.1143143326923908,
|
2384 |
+
"chrf": 28.93119601652647,
|
2385 |
"commonvoice_hours": 0.0,
|
2386 |
"commonvoice_locale": "xh",
|
2387 |
"population": {
|
|
|
2396 |
"scores": [
|
2397 |
{
|
2398 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2399 |
+
"bleu": 0.08532345270447181,
|
2400 |
+
"chrf": 25.148121650983146
|
2401 |
}
|
2402 |
],
|
2403 |
"bleu": 0.08532345270447181,
|
2404 |
+
"chrf": 25.148121650983146,
|
2405 |
"commonvoice_hours": 0.0,
|
2406 |
"commonvoice_locale": "ti",
|
2407 |
"population": {
|
|
|
2417 |
"scores": [
|
2418 |
{
|
2419 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2420 |
+
"bleu": 0.18341973561481445,
|
2421 |
+
"chrf": 39.828398360117035
|
2422 |
}
|
2423 |
],
|
2424 |
"bleu": 0.18341973561481445,
|
2425 |
+
"chrf": 39.828398360117035,
|
2426 |
"commonvoice_hours": 1804.0,
|
2427 |
"commonvoice_locale": "be",
|
2428 |
"population": {
|
|
|
2438 |
"scores": [
|
2439 |
{
|
2440 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2441 |
+
"bleu": 0.11581604983636683,
|
2442 |
+
"chrf": 28.08252510561598
|
2443 |
}
|
2444 |
],
|
2445 |
"bleu": 0.11581604983636683,
|
2446 |
+
"chrf": 28.08252510561598,
|
2447 |
"commonvoice_hours": null,
|
2448 |
"commonvoice_locale": null,
|
2449 |
"population": {
|
|
|
2457 |
"scores": [
|
2458 |
{
|
2459 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2460 |
+
"bleu": 0.1846236171638531,
|
2461 |
+
"chrf": 39.50004300248175
|
2462 |
}
|
2463 |
],
|
2464 |
"bleu": 0.1846236171638531,
|
2465 |
+
"chrf": 39.50004300248175,
|
2466 |
"commonvoice_hours": 0.0,
|
2467 |
"commonvoice_locale": "tg",
|
2468 |
"population": {
|
|
|
2477 |
"scores": [
|
2478 |
{
|
2479 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2480 |
+
"bleu": 0.05520341910203098,
|
2481 |
+
"chrf": 20.443280736080066
|
2482 |
}
|
2483 |
],
|
2484 |
"bleu": 0.05520341910203098,
|
2485 |
+
"chrf": 20.443280736080066,
|
2486 |
"commonvoice_hours": null,
|
2487 |
"commonvoice_locale": null,
|
2488 |
"population": {
|
|
|
2496 |
"scores": [
|
2497 |
{
|
2498 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2499 |
+
"bleu": 0.07227674667013836,
|
2500 |
+
"chrf": 22.136582910055218
|
2501 |
}
|
2502 |
],
|
2503 |
"bleu": 0.07227674667013836,
|
2504 |
+
"chrf": 22.136582910055218,
|
2505 |
"commonvoice_hours": 0.0,
|
2506 |
"commonvoice_locale": "bm",
|
2507 |
"population": {
|
|
|
2515 |
"scores": [
|
2516 |
{
|
2517 |
"model": "openai/gpt-4o-mini",
|
2518 |
+
"bleu": 0.3277177864074156,
|
2519 |
+
"chrf": 48.61873150516328
|
2520 |
},
|
2521 |
{
|
2522 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2523 |
+
"bleu": 0.31538459755111,
|
2524 |
+
"chrf": 47.75260784921264
|
2525 |
},
|
2526 |
{
|
2527 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
2528 |
+
"bleu": 0.26710030799119333,
|
2529 |
+
"chrf": 38.869810330084285
|
2530 |
},
|
2531 |
{
|
2532 |
"model": "google/gemini-2.0-flash-001",
|
2533 |
+
"bleu": 0.4361740814378139,
|
2534 |
+
"chrf": 56.524736028951835
|
2535 |
},
|
2536 |
{
|
2537 |
"model": "deepseek/deepseek-chat",
|
2538 |
+
"bleu": 0.37149647257024515,
|
2539 |
+
"chrf": 53.20003536968165
|
2540 |
},
|
2541 |
{
|
2542 |
"model": "microsoft/phi-4",
|
2543 |
+
"bleu": 0.2883662842075808,
|
2544 |
+
"chrf": 45.203083386764426
|
2545 |
}
|
2546 |
],
|
2547 |
"bleu": 0.3343732550275598,
|
2548 |
+
"chrf": 48.361500744976354,
|
2549 |
"commonvoice_hours": 0.5,
|
2550 |
"commonvoice_locale": "af",
|
2551 |
"population": {
|
|
|
2561 |
"scores": [
|
2562 |
{
|
2563 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2564 |
+
"bleu": 0.0883556207236924,
|
2565 |
+
"chrf": 24.868277910094278
|
2566 |
}
|
2567 |
],
|
2568 |
"bleu": 0.0883556207236924,
|
2569 |
+
"chrf": 24.868277910094278,
|
2570 |
"commonvoice_hours": 0.0,
|
2571 |
"commonvoice_locale": "ki",
|
2572 |
"population": {
|
|
|
2580 |
"scores": [
|
2581 |
{
|
2582 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2583 |
+
"bleu": 0.1872609836464467,
|
2584 |
+
"chrf": 37.00166091804026
|
2585 |
}
|
2586 |
],
|
2587 |
"bleu": 0.1872609836464467,
|
2588 |
+
"chrf": 37.00166091804026,
|
2589 |
"commonvoice_hours": 0.0,
|
2590 |
"commonvoice_locale": "ht",
|
2591 |
"population": {
|
|
|
2599 |
"scores": [
|
2600 |
{
|
2601 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2602 |
+
"bleu": 0.29445274007068095,
|
2603 |
+
"chrf": 47.46074814103581
|
2604 |
}
|
2605 |
],
|
2606 |
"bleu": 0.29445274007068095,
|
2607 |
+
"chrf": 47.46074814103581,
|
2608 |
"commonvoice_hours": 2842.0,
|
2609 |
"commonvoice_locale": "ca",
|
2610 |
"population": {
|
|
|
2621 |
"scores": [
|
2622 |
{
|
2623 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2624 |
+
"bleu": 0.2824719214447976,
|
2625 |
+
"chrf": 46.279771845770604
|
2626 |
}
|
2627 |
],
|
2628 |
"bleu": 0.2824719214447976,
|
2629 |
+
"chrf": 46.279771845770604,
|
2630 |
"commonvoice_hours": 1.1,
|
2631 |
"commonvoice_locale": "he",
|
2632 |
"population": {
|
|
|
2640 |
"scores": [
|
2641 |
{
|
2642 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2643 |
+
"bleu": 0.08102496244147746,
|
2644 |
+
"chrf": 22.184797797745208
|
2645 |
}
|
2646 |
],
|
2647 |
"bleu": 0.08102496244147746,
|
2648 |
+
"chrf": 22.184797797745208,
|
2649 |
"commonvoice_hours": 0.0,
|
2650 |
"commonvoice_locale": "mos",
|
2651 |
"population": {
|
|
|
2659 |
"scores": [
|
2660 |
{
|
2661 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2662 |
+
"bleu": 0.07329500673809967,
|
2663 |
+
"chrf": 22.838222030254723
|
2664 |
}
|
2665 |
],
|
2666 |
"bleu": 0.07329500673809967,
|
2667 |
+
"chrf": 22.838222030254723,
|
2668 |
"commonvoice_hours": null,
|
2669 |
"commonvoice_locale": null,
|
2670 |
"population": {
|
|
|
2678 |
"scores": [
|
2679 |
{
|
2680 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2681 |
+
"bleu": 0.18397910035998616,
|
2682 |
+
"chrf": 35.50154017198535
|
2683 |
}
|
2684 |
],
|
2685 |
"bleu": 0.18397910035998616,
|
2686 |
+
"chrf": 35.50154017198535,
|
2687 |
"commonvoice_hours": 361.0,
|
2688 |
"commonvoice_locale": "ug",
|
2689 |
"population": {
|
|
|
2700 |
"scores": [
|
2701 |
{
|
2702 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2703 |
+
"bleu": 0.22401269807719826,
|
2704 |
+
"chrf": 40.34678123737912
|
2705 |
}
|
2706 |
],
|
2707 |
"bleu": 0.22401269807719826,
|
2708 |
+
"chrf": 40.34678123737912,
|
2709 |
"commonvoice_hours": null,
|
2710 |
"commonvoice_locale": null,
|
2711 |
"population": {
|
|
|
2719 |
"scores": [
|
2720 |
{
|
2721 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2722 |
+
"bleu": 0.24723779163445408,
|
2723 |
+
"chrf": 45.55403997487483
|
2724 |
}
|
2725 |
],
|
2726 |
"bleu": 0.24723779163445408,
|
2727 |
+
"chrf": 45.55403997487483,
|
2728 |
"commonvoice_hours": 16.0,
|
2729 |
"commonvoice_locale": "bg",
|
2730 |
"population": {
|
|
|
2743 |
"scores": [
|
2744 |
{
|
2745 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2746 |
+
"bleu": 0.0366272802298245,
|
2747 |
+
"chrf": 15.463910171449278
|
2748 |
}
|
2749 |
],
|
2750 |
"bleu": 0.0366272802298245,
|
2751 |
+
"chrf": 15.463910171449278,
|
2752 |
"commonvoice_hours": 1.3,
|
2753 |
"commonvoice_locale": "zgh",
|
2754 |
"population": {
|
|
|
2762 |
"scores": [
|
2763 |
{
|
2764 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2765 |
+
"bleu": 0.3051247921441283,
|
2766 |
+
"chrf": 48.3731481201238
|
2767 |
}
|
2768 |
],
|
2769 |
"bleu": 0.3051247921441283,
|
2770 |
+
"chrf": 48.3731481201238,
|
2771 |
"commonvoice_hours": 0.0,
|
2772 |
"commonvoice_locale": "bs",
|
2773 |
"population": {
|
|
|
2781 |
"scores": [
|
2782 |
{
|
2783 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2784 |
+
"bleu": 0.0957054530624,
|
2785 |
+
"chrf": 28.269164219007447
|
2786 |
}
|
2787 |
],
|
2788 |
"bleu": 0.0957054530624,
|
2789 |
+
"chrf": 28.269164219007447,
|
2790 |
"commonvoice_hours": null,
|
2791 |
"commonvoice_locale": null,
|
2792 |
"population": {
|
|
|
2800 |
"scores": [
|
2801 |
{
|
2802 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2803 |
+
"bleu": 0.11554870024021023,
|
2804 |
+
"chrf": 29.549934477174254
|
2805 |
}
|
2806 |
],
|
2807 |
"bleu": 0.11554870024021023,
|
2808 |
+
"chrf": 29.549934477174254,
|
2809 |
"commonvoice_hours": 0.5,
|
2810 |
"commonvoice_locale": "sat",
|
2811 |
"population": {
|
|
|
2819 |
"scores": [
|
2820 |
{
|
2821 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2822 |
+
"bleu": 0.3512857581168584,
|
2823 |
+
"chrf": 51.12453594191334
|
2824 |
}
|
2825 |
],
|
2826 |
"bleu": 0.3512857581168584,
|
2827 |
+
"chrf": 51.12453594191334,
|
2828 |
"commonvoice_hours": 13.0,
|
2829 |
"commonvoice_locale": "da",
|
2830 |
"population": {
|
|
|
2841 |
"scores": [
|
2842 |
{
|
2843 |
"model": "openai/gpt-4o-mini",
|
2844 |
+
"bleu": 0.15410064596625964,
|
2845 |
+
"chrf": 36.3602620147462
|
2846 |
},
|
2847 |
{
|
2848 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2849 |
+
"bleu": 0.14820890318014426,
|
2850 |
+
"chrf": 34.78567738931005
|
2851 |
},
|
2852 |
{
|
2853 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
2854 |
+
"bleu": 0.07938993687949465,
|
2855 |
+
"chrf": 24.385063397578556
|
2856 |
},
|
2857 |
{
|
2858 |
"model": "google/gemini-2.0-flash-001",
|
2859 |
+
"bleu": 0.2761834512123037,
|
2860 |
+
"chrf": 47.41646574422384
|
2861 |
},
|
2862 |
{
|
2863 |
"model": "deepseek/deepseek-chat",
|
2864 |
+
"bleu": 0.1718597543270264,
|
2865 |
+
"chrf": 38.84762953076257
|
2866 |
},
|
2867 |
{
|
2868 |
"model": "microsoft/phi-4",
|
2869 |
+
"bleu": 0.10118596975980092,
|
2870 |
+
"chrf": 28.31840639855478
|
2871 |
}
|
2872 |
],
|
2873 |
"bleu": 0.15515477688750492,
|
2874 |
+
"chrf": 35.018917412529326,
|
2875 |
"commonvoice_hours": 2.8,
|
2876 |
"commonvoice_locale": "tk",
|
2877 |
"population": {
|
|
|
2887 |
"scores": [
|
2888 |
{
|
2889 |
"model": "openai/gpt-4o-mini",
|
2890 |
+
"bleu": 0.14440915289810186,
|
2891 |
+
"chrf": 31.3622869278075
|
2892 |
},
|
2893 |
{
|
2894 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2895 |
+
"bleu": 0.15987085387022903,
|
2896 |
+
"chrf": 35.18523232721762
|
2897 |
},
|
2898 |
{
|
2899 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
2900 |
+
"bleu": 0.10987778830152085,
|
2901 |
+
"chrf": 25.91454653951599
|
2902 |
},
|
2903 |
{
|
2904 |
"model": "google/gemini-2.0-flash-001",
|
2905 |
+
"bleu": 0.28985769410441137,
|
2906 |
+
"chrf": 46.64309582634758
|
2907 |
},
|
2908 |
{
|
2909 |
"model": "deepseek/deepseek-chat",
|
2910 |
+
"bleu": 0.1865343501300658,
|
2911 |
+
"chrf": 37.28483871763787
|
2912 |
},
|
2913 |
{
|
2914 |
"model": "microsoft/phi-4",
|
2915 |
+
"bleu": 0.10000019378200214,
|
2916 |
+
"chrf": 26.406217887319293
|
2917 |
}
|
2918 |
],
|
2919 |
"bleu": 0.16509167218105517,
|
2920 |
+
"chrf": 33.79936970430764,
|
2921 |
"commonvoice_hours": 69.0,
|
2922 |
"commonvoice_locale": "kmr",
|
2923 |
"population": {
|
|
|
2938 |
"scores": [
|
2939 |
{
|
2940 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2941 |
+
"bleu": 0.2290484937313612,
|
2942 |
+
"chrf": 41.79307139114272
|
2943 |
}
|
2944 |
],
|
2945 |
"bleu": 0.2290484937313612,
|
2946 |
+
"chrf": 41.79307139114272,
|
2947 |
"commonvoice_hours": 0.0,
|
2948 |
"commonvoice_locale": "hr",
|
2949 |
"population": {
|
|
|
2965 |
"scores": [
|
2966 |
{
|
2967 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2968 |
+
"bleu": 0.26490711574268994,
|
2969 |
+
"chrf": 44.54318851690701
|
2970 |
}
|
2971 |
],
|
2972 |
"bleu": 0.26490711574268994,
|
2973 |
+
"chrf": 44.54318851690701,
|
2974 |
"commonvoice_hours": 8.8,
|
2975 |
"commonvoice_locale": "sq",
|
2976 |
"population": {
|
|
|
2990 |
"scores": [
|
2991 |
{
|
2992 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
2993 |
+
"bleu": 0.2826836020834733,
|
2994 |
+
"chrf": 45.73110764547564
|
2995 |
}
|
2996 |
],
|
2997 |
"bleu": 0.2826836020834733,
|
2998 |
+
"chrf": 45.73110764547564,
|
2999 |
+
"commonvoice_hours": 40.0,
|
3000 |
"commonvoice_locale": "sk",
|
3001 |
"population": {
|
3002 |
"CZ": 1712400,
|
|
|
3012 |
"scores": [
|
3013 |
{
|
3014 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3015 |
+
"bleu": 0.0633017924291756,
|
3016 |
+
"chrf": 21.71247042480193
|
3017 |
}
|
3018 |
],
|
3019 |
"bleu": 0.0633017924291756,
|
3020 |
+
"chrf": 21.71247042480193,
|
3021 |
"commonvoice_hours": 0.3,
|
3022 |
"commonvoice_locale": "dyu",
|
3023 |
"population": {
|
|
|
3031 |
"scores": [
|
3032 |
{
|
3033 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3034 |
+
"bleu": 0.1950781841033538,
|
3035 |
+
"chrf": 41.09779803278993
|
3036 |
}
|
3037 |
],
|
3038 |
"bleu": 0.1950781841033538,
|
3039 |
+
"chrf": 41.09779803278993,
|
3040 |
"commonvoice_hours": 46.0,
|
3041 |
"commonvoice_locale": "mn",
|
3042 |
"population": {
|
|
|
3052 |
"scores": [
|
3053 |
{
|
3054 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3055 |
+
"bleu": 0.12381413258013083,
|
3056 |
+
"chrf": 28.651371806370722
|
3057 |
}
|
3058 |
],
|
3059 |
"bleu": 0.12381413258013083,
|
3060 |
+
"chrf": 28.651371806370722,
|
3061 |
"commonvoice_hours": 0.0,
|
3062 |
"commonvoice_locale": "st",
|
3063 |
"population": {
|
|
|
3072 |
"scores": [
|
3073 |
{
|
3074 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3075 |
+
"bleu": 0.09139131060492443,
|
3076 |
+
"chrf": 25.97258334431281
|
3077 |
}
|
3078 |
],
|
3079 |
"bleu": 0.09139131060492443,
|
3080 |
+
"chrf": 25.97258334431281,
|
3081 |
"commonvoice_hours": 4.2,
|
3082 |
"commonvoice_locale": "tn",
|
3083 |
"population": {
|
|
|
3094 |
"scores": [
|
3095 |
{
|
3096 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3097 |
+
"bleu": 0.12296923497272805,
|
3098 |
+
"chrf": 29.040238903610113
|
3099 |
}
|
3100 |
],
|
3101 |
"bleu": 0.12296923497272805,
|
3102 |
+
"chrf": 29.040238903610113,
|
3103 |
"commonvoice_hours": 3.7,
|
3104 |
"commonvoice_locale": "gn",
|
3105 |
"population": {
|
|
|
3115 |
"scores": [
|
3116 |
{
|
3117 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3118 |
+
"bleu": 0.2306868672081301,
|
3119 |
+
"chrf": 42.094559446408105
|
3120 |
}
|
3121 |
],
|
3122 |
"bleu": 0.2306868672081301,
|
3123 |
+
"chrf": 42.094559446408105,
|
3124 |
"commonvoice_hours": 15.0,
|
3125 |
"commonvoice_locale": "fi",
|
3126 |
"population": {
|
|
|
3137 |
"scores": [
|
3138 |
{
|
3139 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3140 |
+
"bleu": 0.09865217050437662,
|
3141 |
+
"chrf": 25.926064361947446
|
3142 |
}
|
3143 |
],
|
3144 |
"bleu": 0.09865217050437662,
|
3145 |
+
"chrf": 25.926064361947446,
|
3146 |
"commonvoice_hours": 437.0,
|
3147 |
"commonvoice_locale": "lg",
|
3148 |
"population": {
|
|
|
3156 |
"scores": [
|
3157 |
{
|
3158 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3159 |
+
"bleu": 0.1344939664526747,
|
3160 |
+
"chrf": 32.68903932403509
|
3161 |
}
|
3162 |
],
|
3163 |
"bleu": 0.1344939664526747,
|
3164 |
+
"chrf": 32.68903932403509,
|
3165 |
"commonvoice_hours": null,
|
3166 |
"commonvoice_locale": null,
|
3167 |
"population": {
|
|
|
3176 |
"scores": [
|
3177 |
{
|
3178 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3179 |
+
"bleu": 0.3568538739752233,
|
3180 |
+
"chrf": 50.18863565152686
|
3181 |
}
|
3182 |
],
|
3183 |
"bleu": 0.3568538739752233,
|
3184 |
+
"chrf": 50.18863565152686,
|
3185 |
"commonvoice_hours": 0.1,
|
3186 |
"commonvoice_locale": "nb-NO",
|
3187 |
"population": {
|
|
|
3196 |
"scores": [
|
3197 |
{
|
3198 |
"model": "openai/gpt-4o-mini",
|
3199 |
+
"bleu": 0.07496563614353445,
|
3200 |
+
"chrf": 23.431580504923282
|
3201 |
},
|
3202 |
{
|
3203 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3204 |
+
"bleu": 0.10425825663987873,
|
3205 |
+
"chrf": 26.156513526794825
|
3206 |
},
|
3207 |
{
|
3208 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
3209 |
+
"bleu": 0.048552315311727906,
|
3210 |
+
"chrf": 17.052116746764433
|
3211 |
},
|
3212 |
{
|
3213 |
"model": "google/gemini-2.0-flash-001",
|
3214 |
+
"bleu": 0.20820762589055672,
|
3215 |
+
"chrf": 37.899164894105404
|
3216 |
},
|
3217 |
{
|
3218 |
"model": "deepseek/deepseek-chat",
|
3219 |
+
"bleu": 0.13037194233770932,
|
3220 |
+
"chrf": 29.069219847377738
|
3221 |
},
|
3222 |
{
|
3223 |
"model": "microsoft/phi-4",
|
3224 |
+
"bleu": 0.07919429950933718,
|
3225 |
+
"chrf": 22.45526755754465
|
3226 |
}
|
3227 |
],
|
3228 |
"bleu": 0.10759167930545738,
|
3229 |
+
"chrf": 26.01064384625172,
|
3230 |
"commonvoice_hours": null,
|
3231 |
"commonvoice_locale": null,
|
3232 |
"population": {
|
|
|
3240 |
"scores": [
|
3241 |
{
|
3242 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3243 |
+
"bleu": 0.2525113198548088,
|
3244 |
+
"chrf": 44.115149170486895
|
3245 |
}
|
3246 |
],
|
3247 |
"bleu": 0.2525113198548088,
|
3248 |
+
"chrf": 44.115149170486895,
|
3249 |
"commonvoice_hours": 31.0,
|
3250 |
"commonvoice_locale": "hy-AM",
|
3251 |
"population": {
|
|
|
3266 |
"scores": [
|
3267 |
{
|
3268 |
"model": "openai/gpt-4o-mini",
|
3269 |
+
"bleu": 0.1287306186367617,
|
3270 |
+
"chrf": 28.538499437787404
|
3271 |
},
|
3272 |
{
|
3273 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3274 |
+
"bleu": 0.11431860079235977,
|
3275 |
+
"chrf": 29.789689541768464
|
3276 |
},
|
3277 |
{
|
3278 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
3279 |
+
"bleu": 0.048032427671766596,
|
3280 |
+
"chrf": 16.511000736562355
|
3281 |
},
|
3282 |
{
|
3283 |
"model": "google/gemini-2.0-flash-001",
|
3284 |
+
"bleu": 0.277532484522071,
|
3285 |
+
"chrf": 43.725160462861595
|
3286 |
},
|
3287 |
{
|
3288 |
"model": "deepseek/deepseek-chat",
|
3289 |
+
"bleu": 0.1559013863573944,
|
3290 |
+
"chrf": 31.344526297642712
|
3291 |
},
|
3292 |
{
|
3293 |
"model": "microsoft/phi-4",
|
3294 |
+
"bleu": 0.08683694629684643,
|
3295 |
+
"chrf": 24.176752802670837
|
3296 |
}
|
3297 |
],
|
3298 |
"bleu": 0.13522541071286664,
|
3299 |
+
"chrf": 29.014271546548898,
|
3300 |
"commonvoice_hours": 0.0,
|
3301 |
"commonvoice_locale": "nso",
|
3302 |
"population": {
|
|
|
3310 |
"scores": [
|
3311 |
{
|
3312 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3313 |
+
"bleu": 0.07123028733548639,
|
3314 |
+
"chrf": 21.84956735049654
|
3315 |
}
|
3316 |
],
|
3317 |
"bleu": 0.07123028733548639,
|
3318 |
+
"chrf": 21.84956735049654,
|
3319 |
"commonvoice_hours": 30.0,
|
3320 |
"commonvoice_locale": "luo",
|
3321 |
"population": {
|
|
|
3329 |
"scores": [
|
3330 |
{
|
3331 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3332 |
+
"bleu": 0.17665711931817996,
|
3333 |
+
"chrf": 35.46692292627831
|
3334 |
}
|
3335 |
],
|
3336 |
"bleu": 0.17665711931817996,
|
3337 |
+
"chrf": 35.46692292627831,
|
3338 |
"commonvoice_hours": null,
|
3339 |
"commonvoice_locale": null,
|
3340 |
"population": {
|
|
|
3348 |
"scores": [
|
3349 |
{
|
3350 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3351 |
+
"bleu": 0.17291556794348653,
|
3352 |
+
"chrf": 35.37210957380201
|
3353 |
}
|
3354 |
],
|
3355 |
"bleu": 0.17291556794348653,
|
3356 |
+
"chrf": 35.37210957380201,
|
3357 |
"commonvoice_hours": 0.2,
|
3358 |
"commonvoice_locale": "lo",
|
3359 |
"population": {
|
|
|
3367 |
"scores": [
|
3368 |
{
|
3369 |
"model": "openai/gpt-4o-mini",
|
3370 |
+
"bleu": 0.1264498146181144,
|
3371 |
+
"chrf": 26.535888048377064
|
3372 |
},
|
3373 |
{
|
3374 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3375 |
+
"bleu": 0.09614725376527729,
|
3376 |
+
"chrf": 26.35974604226704
|
3377 |
},
|
3378 |
{
|
3379 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
3380 |
+
"bleu": 0.043920591728788254,
|
3381 |
+
"chrf": 15.171343812958735
|
3382 |
},
|
3383 |
{
|
3384 |
"model": "google/gemini-2.0-flash-001",
|
3385 |
+
"bleu": 0.2843690426617385,
|
3386 |
+
"chrf": 43.51952547276378
|
3387 |
},
|
3388 |
{
|
3389 |
"model": "deepseek/deepseek-chat",
|
3390 |
+
"bleu": 0.10072669531344912,
|
3391 |
+
"chrf": 24.778318092682298
|
3392 |
},
|
3393 |
{
|
3394 |
"model": "microsoft/phi-4",
|
3395 |
+
"bleu": 0.0708900783780892,
|
3396 |
+
"chrf": 24.114324582460767
|
3397 |
}
|
3398 |
],
|
3399 |
"bleu": 0.12041724607757613,
|
3400 |
+
"chrf": 26.746524341918285,
|
3401 |
"commonvoice_hours": 0.0,
|
3402 |
"commonvoice_locale": "ts",
|
3403 |
"population": {
|
|
|
3413 |
"scores": [
|
3414 |
{
|
3415 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3416 |
+
"bleu": 0.20937766416587725,
|
3417 |
+
"chrf": 37.802202729584685
|
3418 |
}
|
3419 |
],
|
3420 |
"bleu": 0.20937766416587725,
|
3421 |
+
"chrf": 37.802202729584685,
|
3422 |
"commonvoice_hours": null,
|
3423 |
"commonvoice_locale": null,
|
3424 |
"population": {
|
|
|
3432 |
"scores": [
|
3433 |
{
|
3434 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3435 |
+
"bleu": 0.06328122760447334,
|
3436 |
+
"chrf": 21.930232101484705
|
3437 |
}
|
3438 |
],
|
3439 |
"bleu": 0.06328122760447334,
|
3440 |
+
"chrf": 21.930232101484705,
|
3441 |
"commonvoice_hours": 0.0,
|
3442 |
"commonvoice_locale": "ee",
|
3443 |
"population": {
|
|
|
3452 |
"scores": [
|
3453 |
{
|
3454 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3455 |
+
"bleu": 0.11888625287150432,
|
3456 |
+
"chrf": 26.566035803697112
|
3457 |
}
|
3458 |
],
|
3459 |
"bleu": 0.11888625287150432,
|
3460 |
+
"chrf": 26.566035803697112,
|
3461 |
"commonvoice_hours": null,
|
3462 |
"commonvoice_locale": null,
|
3463 |
"population": {
|
|
|
3472 |
"scores": [
|
3473 |
{
|
3474 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3475 |
+
"bleu": 0.17517997036818814,
|
3476 |
+
"chrf": 35.662782661637515
|
3477 |
}
|
3478 |
],
|
3479 |
"bleu": 0.17517997036818814,
|
3480 |
+
"chrf": 35.662782661637515,
|
3481 |
"commonvoice_hours": 0.0,
|
3482 |
"commonvoice_locale": "gom",
|
3483 |
"population": {
|
|
|
3491 |
"scores": [
|
3492 |
{
|
3493 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3494 |
+
"bleu": 0.09766297423802607,
|
3495 |
+
"chrf": 24.328994687372596
|
3496 |
}
|
3497 |
],
|
3498 |
"bleu": 0.09766297423802607,
|
3499 |
+
"chrf": 24.328994687372596,
|
3500 |
"commonvoice_hours": null,
|
3501 |
"commonvoice_locale": null,
|
3502 |
"population": {
|
|
|
3510 |
"scores": [
|
3511 |
{
|
3512 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3513 |
+
"bleu": 0.21429523594040997,
|
3514 |
+
"chrf": 37.997802850700054
|
3515 |
}
|
3516 |
],
|
3517 |
"bleu": 0.21429523594040997,
|
3518 |
+
"chrf": 37.997802850700054,
|
3519 |
"commonvoice_hours": null,
|
3520 |
"commonvoice_locale": null,
|
3521 |
"population": {
|
|
|
3530 |
"scores": [
|
3531 |
{
|
3532 |
"model": "openai/gpt-4o-mini",
|
3533 |
+
"bleu": 0.19986098660959015,
|
3534 |
+
"chrf": 38.27348032712485
|
3535 |
},
|
3536 |
{
|
3537 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3538 |
+
"bleu": 0.21159778572935684,
|
3539 |
+
"chrf": 40.44461475492081
|
3540 |
},
|
3541 |
{
|
3542 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
3543 |
+
"bleu": 0.1588300738463149,
|
3544 |
+
"chrf": 31.614789846388156
|
3545 |
},
|
3546 |
{
|
3547 |
"model": "google/gemini-2.0-flash-001",
|
3548 |
+
"bleu": 0.30563834118855027,
|
3549 |
+
"chrf": 47.111364119506355
|
3550 |
},
|
3551 |
{
|
3552 |
"model": "deepseek/deepseek-chat",
|
3553 |
+
"bleu": 0.22666325208418955,
|
3554 |
+
"chrf": 42.07703156302399
|
3555 |
},
|
3556 |
{
|
3557 |
"model": "microsoft/phi-4",
|
3558 |
+
"bleu": 0.18882590620933629,
|
3559 |
+
"chrf": 37.12550972377164
|
3560 |
}
|
3561 |
],
|
3562 |
"bleu": 0.215236057611223,
|
3563 |
+
"chrf": 39.44113172245597,
|
3564 |
"commonvoice_hours": null,
|
3565 |
"commonvoice_locale": null,
|
3566 |
"population": {
|
|
|
3575 |
"scores": [
|
3576 |
{
|
3577 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3578 |
+
"bleu": 0.16911632683538352,
|
3579 |
+
"chrf": 35.055560798896856
|
3580 |
}
|
3581 |
],
|
3582 |
"bleu": 0.16911632683538352,
|
3583 |
+
"chrf": 35.055560798896856,
|
3584 |
"commonvoice_hours": 0.0,
|
3585 |
"commonvoice_locale": "ace",
|
3586 |
"population": {
|
|
|
3594 |
"scores": [
|
3595 |
{
|
3596 |
"model": "openai/gpt-4o-mini",
|
3597 |
+
"bleu": 0.03567194702202585,
|
3598 |
+
"chrf": 15.061253284595894
|
3599 |
},
|
3600 |
{
|
3601 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3602 |
+
"bleu": 0.14589621017705648,
|
3603 |
+
"chrf": 32.36640913542123
|
3604 |
},
|
3605 |
{
|
3606 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
3607 |
+
"bleu": 0.011114664716630177,
|
3608 |
+
"chrf": 9.54345606166579
|
3609 |
},
|
3610 |
{
|
3611 |
"model": "google/gemini-2.0-flash-001",
|
3612 |
+
"bleu": 0.24688742301342204,
|
3613 |
+
"chrf": 43.47153430068834
|
3614 |
},
|
3615 |
{
|
3616 |
"model": "deepseek/deepseek-chat",
|
3617 |
+
"bleu": 0.11534595629433392,
|
3618 |
+
"chrf": 32.685789872044445
|
3619 |
},
|
3620 |
{
|
3621 |
"model": "microsoft/phi-4",
|
3622 |
+
"bleu": 0.06564720827517354,
|
3623 |
+
"chrf": 21.409820368208937
|
3624 |
}
|
3625 |
],
|
3626 |
"bleu": 0.10342723491644035,
|
3627 |
+
"chrf": 25.756377170437435,
|
3628 |
"commonvoice_hours": 0.0,
|
3629 |
"commonvoice_locale": "shn",
|
3630 |
"population": {
|
|
|
3639 |
"scores": [
|
3640 |
{
|
3641 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3642 |
+
"bleu": 0.22489436376782782,
|
3643 |
+
"chrf": 42.05355918136569
|
3644 |
}
|
3645 |
],
|
3646 |
"bleu": 0.22489436376782782,
|
3647 |
+
"chrf": 42.05355918136569,
|
3648 |
"commonvoice_hours": 158.0,
|
3649 |
"commonvoice_locale": "ka",
|
3650 |
"population": {
|
|
|
3660 |
"scores": [
|
3661 |
{
|
3662 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3663 |
+
"bleu": 0.2463790593991139,
|
3664 |
+
"chrf": 43.16984633200989
|
3665 |
}
|
3666 |
],
|
3667 |
"bleu": 0.2463790593991139,
|
3668 |
+
"chrf": 43.16984633200989,
|
3669 |
"commonvoice_hours": 109.0,
|
3670 |
"commonvoice_locale": "gl",
|
3671 |
"population": {
|
|
|
3680 |
"scores": [
|
3681 |
{
|
3682 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3683 |
+
"bleu": 0.10115588577551943,
|
3684 |
+
"chrf": 26.041173534129616
|
3685 |
}
|
3686 |
],
|
3687 |
"bleu": 0.10115588577551943,
|
3688 |
+
"chrf": 26.041173534129616,
|
3689 |
"commonvoice_hours": 0.0,
|
3690 |
"commonvoice_locale": "ln",
|
3691 |
"population": {
|
|
|
3702 |
"scores": [
|
3703 |
{
|
3704 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3705 |
+
"bleu": 0.03368838568519845,
|
3706 |
+
"chrf": 17.84430440143716
|
3707 |
}
|
3708 |
],
|
3709 |
"bleu": 0.03368838568519845,
|
3710 |
+
"chrf": 17.84430440143716,
|
3711 |
"commonvoice_hours": 571.0,
|
3712 |
"commonvoice_locale": "kab",
|
3713 |
"population": {
|
|
|
3721 |
"scores": [
|
3722 |
{
|
3723 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3724 |
+
"bleu": 0.21002212869070494,
|
3725 |
+
"chrf": 39.3726736717899
|
3726 |
}
|
3727 |
],
|
3728 |
"bleu": 0.21002212869070494,
|
3729 |
+
"chrf": 39.3726736717899,
|
3730 |
"commonvoice_hours": 39.0,
|
3731 |
"commonvoice_locale": "ky",
|
3732 |
"population": {
|
|
|
3742 |
"scores": [
|
3743 |
{
|
3744 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3745 |
+
"bleu": 0.0832678269022026,
|
3746 |
+
"chrf": 21.627442109362057
|
3747 |
}
|
3748 |
],
|
3749 |
"bleu": 0.0832678269022026,
|
3750 |
+
"chrf": 21.627442109362057,
|
3751 |
"commonvoice_hours": null,
|
3752 |
"commonvoice_locale": null,
|
3753 |
"population": {
|
|
|
3761 |
"scores": [
|
3762 |
{
|
3763 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3764 |
+
"bleu": 0.2156899984074879,
|
3765 |
+
"chrf": 38.73293471051519
|
3766 |
}
|
3767 |
],
|
3768 |
"bleu": 0.2156899984074879,
|
3769 |
+
"chrf": 38.73293471051519,
|
3770 |
"commonvoice_hours": null,
|
3771 |
"commonvoice_locale": null,
|
3772 |
"population": {
|
|
|
3781 |
"scores": [
|
3782 |
{
|
3783 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3784 |
+
"bleu": 0.11883469874802492,
|
3785 |
+
"chrf": 29.188000714511094
|
3786 |
}
|
3787 |
],
|
3788 |
"bleu": 0.11883469874802492,
|
3789 |
+
"chrf": 29.188000714511094,
|
3790 |
"commonvoice_hours": 0.0,
|
3791 |
"commonvoice_locale": "bo",
|
3792 |
"population": {
|
|
|
3802 |
"scores": [
|
3803 |
{
|
3804 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3805 |
+
"bleu": 0.052708457503892185,
|
3806 |
+
"chrf": 21.077342933150366
|
3807 |
}
|
3808 |
],
|
3809 |
"bleu": 0.052708457503892185,
|
3810 |
+
"chrf": 21.077342933150366,
|
3811 |
"commonvoice_hours": null,
|
3812 |
"commonvoice_locale": null,
|
3813 |
"population": {
|
|
|
3821 |
"scores": [
|
3822 |
{
|
3823 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3824 |
+
"bleu": 0.07563412710891973,
|
3825 |
+
"chrf": 23.042901816075858
|
3826 |
}
|
3827 |
],
|
3828 |
"bleu": 0.07563412710891973,
|
3829 |
+
"chrf": 23.042901816075858,
|
3830 |
"commonvoice_hours": null,
|
3831 |
"commonvoice_locale": null,
|
3832 |
"population": {
|
|
|
3841 |
"scores": [
|
3842 |
{
|
3843 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3844 |
+
"bleu": 0.18698274115592,
|
3845 |
+
"chrf": 36.17811444987121
|
3846 |
}
|
3847 |
],
|
3848 |
"bleu": 0.18698274115592,
|
3849 |
+
"chrf": 36.17811444987121,
|
3850 |
"commonvoice_hours": null,
|
3851 |
"commonvoice_locale": null,
|
3852 |
"population": {
|
|
|
3860 |
"scores": [
|
3861 |
{
|
3862 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3863 |
+
"bleu": 0.23629191535308328,
|
3864 |
+
"chrf": 41.457632804056466
|
3865 |
}
|
3866 |
],
|
3867 |
"bleu": 0.23629191535308328,
|
3868 |
+
"chrf": 41.457632804056466,
|
3869 |
"commonvoice_hours": 25.0,
|
3870 |
"commonvoice_locale": "lt",
|
3871 |
"population": {
|
|
|
3881 |
"scores": [
|
3882 |
{
|
3883 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3884 |
+
"bleu": 0.10571792263190831,
|
3885 |
+
"chrf": 26.72182646364123
|
3886 |
}
|
3887 |
],
|
3888 |
"bleu": 0.10571792263190831,
|
3889 |
+
"chrf": 26.72182646364123,
|
3890 |
"commonvoice_hours": 0.0,
|
3891 |
"commonvoice_locale": "ss",
|
3892 |
"population": {
|
|
|
3902 |
"scores": [
|
3903 |
{
|
3904 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3905 |
+
"bleu": 0.3116700967049491,
|
3906 |
+
"chrf": 49.33859359679982
|
3907 |
}
|
3908 |
],
|
3909 |
"bleu": 0.3116700967049491,
|
3910 |
+
"chrf": 49.33859359679982,
|
3911 |
"commonvoice_hours": 1.8,
|
3912 |
"commonvoice_locale": "oc",
|
3913 |
"population": {
|
|
|
3922 |
"scores": [
|
3923 |
{
|
3924 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3925 |
+
"bleu": 0.20199966692246552,
|
3926 |
+
"chrf": 38.969447814905855
|
3927 |
}
|
3928 |
],
|
3929 |
"bleu": 0.20199966692246552,
|
3930 |
+
"chrf": 38.969447814905855,
|
3931 |
"commonvoice_hours": 32.0,
|
3932 |
"commonvoice_locale": "tt",
|
3933 |
"population": {
|
|
|
3941 |
"scores": [
|
3942 |
{
|
3943 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3944 |
+
"bleu": 0.25710751649810404,
|
3945 |
+
"chrf": 43.97419502631293
|
3946 |
}
|
3947 |
],
|
3948 |
"bleu": 0.25710751649810404,
|
3949 |
+
"chrf": 43.97419502631293,
|
3950 |
"commonvoice_hours": 17.0,
|
3951 |
"commonvoice_locale": "sl",
|
3952 |
"population": {
|
|
|
3963 |
"scores": [
|
3964 |
{
|
3965 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3966 |
+
"bleu": 0.07193315161893905,
|
3967 |
+
"chrf": 21.198050861825372
|
3968 |
}
|
3969 |
],
|
3970 |
"bleu": 0.07193315161893905,
|
3971 |
+
"chrf": 21.198050861825372,
|
3972 |
"commonvoice_hours": null,
|
3973 |
"commonvoice_locale": null,
|
3974 |
"population": {
|
|
|
3982 |
"scores": [
|
3983 |
{
|
3984 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
3985 |
+
"bleu": 0.16319209573807847,
|
3986 |
+
"chrf": 35.5605244185656
|
3987 |
}
|
3988 |
],
|
3989 |
"bleu": 0.16319209573807847,
|
3990 |
+
"chrf": 35.5605244185656,
|
3991 |
"commonvoice_hours": 27.0,
|
3992 |
"commonvoice_locale": "cv",
|
3993 |
"population": {
|
|
|
4001 |
"scores": [
|
4002 |
{
|
4003 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4004 |
+
"bleu": 0.23494956875272427,
|
4005 |
+
"chrf": 43.58361096793536
|
4006 |
}
|
4007 |
],
|
4008 |
"bleu": 0.23494956875272427,
|
4009 |
+
"chrf": 43.58361096793536,
|
4010 |
"commonvoice_hours": 259.0,
|
4011 |
"commonvoice_locale": "ba",
|
4012 |
"population": {
|
|
|
4020 |
"scores": [
|
4021 |
{
|
4022 |
"model": "openai/gpt-4o-mini",
|
4023 |
+
"bleu": 0.09211959148198216,
|
4024 |
+
"chrf": 25.078974624106454
|
4025 |
},
|
4026 |
{
|
4027 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4028 |
+
"bleu": 0.08953119623294435,
|
4029 |
+
"chrf": 26.60406076382521
|
4030 |
},
|
4031 |
{
|
4032 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
4033 |
+
"bleu": 0.036353192983993324,
|
4034 |
+
"chrf": 15.247949668242475
|
4035 |
},
|
4036 |
{
|
4037 |
"model": "google/gemini-2.0-flash-001",
|
4038 |
+
"bleu": 0.21852974820220555,
|
4039 |
+
"chrf": 40.790711915222424
|
4040 |
},
|
4041 |
{
|
4042 |
"model": "deepseek/deepseek-chat",
|
4043 |
+
"bleu": 0.13308678184347988,
|
4044 |
+
"chrf": 31.89595169117875
|
4045 |
},
|
4046 |
{
|
4047 |
"model": "microsoft/phi-4",
|
4048 |
+
"bleu": 0.06252197708878435,
|
4049 |
+
"chrf": 23.417269345311365
|
4050 |
}
|
4051 |
],
|
4052 |
"bleu": 0.10535708130556494,
|
4053 |
+
"chrf": 27.172486334647783,
|
4054 |
"commonvoice_hours": null,
|
4055 |
"commonvoice_locale": null,
|
4056 |
"population": {
|
|
|
4064 |
"scores": [
|
4065 |
{
|
4066 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4067 |
+
"bleu": 0.2635416107541368,
|
4068 |
+
"chrf": 46.15461303306508
|
4069 |
}
|
4070 |
],
|
4071 |
"bleu": 0.2635416107541368,
|
4072 |
+
"chrf": 46.15461303306508,
|
4073 |
"commonvoice_hours": 18.0,
|
4074 |
"commonvoice_locale": "mk",
|
4075 |
"population": {
|
|
|
4085 |
"scores": [
|
4086 |
{
|
4087 |
"model": "openai/gpt-4o-mini",
|
4088 |
+
"bleu": 0.14637588345836686,
|
4089 |
+
"chrf": 33.27328635596556
|
4090 |
},
|
4091 |
{
|
4092 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4093 |
+
"bleu": 0.17061619096272593,
|
4094 |
+
"chrf": 35.63408741214199
|
4095 |
},
|
4096 |
{
|
4097 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
4098 |
+
"bleu": 0.11313843155080379,
|
4099 |
+
"chrf": 26.507505375137484
|
4100 |
},
|
4101 |
{
|
4102 |
"model": "google/gemini-2.0-flash-001",
|
4103 |
+
"bleu": 0.27369890360254523,
|
4104 |
+
"chrf": 44.34141738332121
|
4105 |
},
|
4106 |
{
|
4107 |
"model": "deepseek/deepseek-chat",
|
4108 |
+
"bleu": 0.19116528491340065,
|
4109 |
+
"chrf": 36.672507303893106
|
4110 |
},
|
4111 |
{
|
4112 |
"model": "microsoft/phi-4",
|
4113 |
+
"bleu": 0.11054650956119119,
|
4114 |
+
"chrf": 30.67803234997905
|
4115 |
}
|
4116 |
],
|
4117 |
"bleu": 0.16759020067483896,
|
4118 |
+
"chrf": 34.51780603007307,
|
4119 |
"commonvoice_hours": null,
|
4120 |
"commonvoice_locale": null,
|
4121 |
"population": {
|
|
|
4129 |
"scores": [
|
4130 |
{
|
4131 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4132 |
+
"bleu": 0.061702153982680315,
|
4133 |
+
"chrf": 20.627265799751633
|
4134 |
}
|
4135 |
],
|
4136 |
"bleu": 0.061702153982680315,
|
4137 |
+
"chrf": 20.627265799751633,
|
4138 |
"commonvoice_hours": 0.0,
|
4139 |
"commonvoice_locale": "mni",
|
4140 |
"population": {
|
|
|
4149 |
"scores": [
|
4150 |
{
|
4151 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4152 |
+
"bleu": 0.24764447442173138,
|
4153 |
+
"chrf": 41.97335861313842
|
4154 |
}
|
4155 |
],
|
4156 |
"bleu": 0.24764447442173138,
|
4157 |
+
"chrf": 41.97335861313842,
|
4158 |
"commonvoice_hours": 0.0,
|
4159 |
"commonvoice_locale": "vec",
|
4160 |
"population": {
|
|
|
4172 |
"scores": [
|
4173 |
{
|
4174 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4175 |
+
"bleu": 0.31661912673403325,
|
4176 |
+
"chrf": 48.792392911852595
|
4177 |
}
|
4178 |
],
|
4179 |
"bleu": 0.31661912673403325,
|
4180 |
+
"chrf": 48.792392911852595,
|
4181 |
"commonvoice_hours": 1.5,
|
4182 |
"commonvoice_locale": "nn-NO",
|
4183 |
"population": {
|
|
|
4191 |
"scores": [
|
4192 |
{
|
4193 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4194 |
+
"bleu": 0.2768559181644857,
|
4195 |
+
"chrf": 46.47151564403362
|
4196 |
}
|
4197 |
],
|
4198 |
"bleu": 0.2768559181644857,
|
4199 |
+
"chrf": 46.47151564403362,
|
4200 |
"commonvoice_hours": 5.8,
|
4201 |
"commonvoice_locale": "ga-IE",
|
4202 |
"population": {
|
|
|
4211 |
"scores": [
|
4212 |
{
|
4213 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4214 |
+
"bleu": 0.23200427142275887,
|
4215 |
+
"chrf": 44.00679383253316
|
4216 |
}
|
4217 |
],
|
4218 |
"bleu": 0.23200427142275887,
|
4219 |
+
"chrf": 44.00679383253316,
|
4220 |
"commonvoice_hours": 260.0,
|
4221 |
"commonvoice_locale": "lv",
|
4222 |
"population": {
|
|
|
4230 |
"scores": [
|
4231 |
{
|
4232 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4233 |
+
"bleu": 0.1907277513380933,
|
4234 |
+
"chrf": 40.633564870804214
|
4235 |
}
|
4236 |
],
|
4237 |
"bleu": 0.1907277513380933,
|
4238 |
+
"chrf": 40.633564870804214,
|
4239 |
"commonvoice_hours": 335.0,
|
4240 |
"commonvoice_locale": "eu",
|
4241 |
"population": {
|
|
|
4250 |
"scores": [
|
4251 |
{
|
4252 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4253 |
+
"bleu": 0.2003666163856343,
|
4254 |
+
"chrf": 39.97859549386356
|
4255 |
}
|
4256 |
],
|
4257 |
"bleu": 0.2003666163856343,
|
4258 |
+
"chrf": 39.97859549386356,
|
4259 |
"commonvoice_hours": 2.9,
|
4260 |
"commonvoice_locale": "sc",
|
4261 |
"population": {
|
|
|
4269 |
"scores": [
|
4270 |
{
|
4271 |
"model": "openai/gpt-4o-mini",
|
4272 |
+
"bleu": 0.26325866988203733,
|
4273 |
+
"chrf": 45.79452460253912
|
4274 |
},
|
4275 |
{
|
4276 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4277 |
+
"bleu": 0.25411630061861235,
|
4278 |
+
"chrf": 45.68081123321704
|
4279 |
},
|
4280 |
{
|
4281 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
4282 |
+
"bleu": 0.19634428413472024,
|
4283 |
+
"chrf": 37.402576382999925
|
4284 |
},
|
4285 |
{
|
4286 |
"model": "google/gemini-2.0-flash-001",
|
4287 |
+
"bleu": 0.3267312117229826,
|
4288 |
+
"chrf": 50.07524798517934
|
4289 |
},
|
4290 |
{
|
4291 |
"model": "deepseek/deepseek-chat",
|
4292 |
+
"bleu": 0.27947088689796734,
|
4293 |
+
"chrf": 47.70370329275568
|
4294 |
},
|
4295 |
{
|
4296 |
"model": "microsoft/phi-4",
|
4297 |
+
"bleu": 0.23043700347741075,
|
4298 |
+
"chrf": 40.64509062227617
|
4299 |
}
|
4300 |
],
|
4301 |
"bleu": 0.2583930594556218,
|
4302 |
+
"chrf": 44.550325686494546,
|
4303 |
"commonvoice_hours": null,
|
4304 |
"commonvoice_locale": null,
|
4305 |
"population": {
|
|
|
4313 |
"scores": [
|
4314 |
{
|
4315 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4316 |
+
"bleu": 0.2748989006328114,
|
4317 |
+
"chrf": 44.151717001541904
|
4318 |
}
|
4319 |
],
|
4320 |
"bleu": 0.2748989006328114,
|
4321 |
+
"chrf": 44.151717001541904,
|
4322 |
"commonvoice_hours": 0.5,
|
4323 |
"commonvoice_locale": "yi",
|
4324 |
"population": {
|
|
|
4335 |
"scores": [
|
4336 |
{
|
4337 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4338 |
+
"bleu": 0.06343642810657522,
|
4339 |
+
"chrf": 21.96116119019238
|
4340 |
}
|
4341 |
],
|
4342 |
"bleu": 0.06343642810657522,
|
4343 |
+
"chrf": 21.96116119019238,
|
4344 |
"commonvoice_hours": null,
|
4345 |
"commonvoice_locale": null,
|
4346 |
"population": {
|
|
|
4354 |
"scores": [
|
4355 |
{
|
4356 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4357 |
+
"bleu": 0.28017358847160223,
|
4358 |
+
"chrf": 45.82764538788154
|
4359 |
}
|
4360 |
],
|
4361 |
"bleu": 0.28017358847160223,
|
4362 |
+
"chrf": 45.82764538788154,
|
4363 |
"commonvoice_hours": null,
|
4364 |
"commonvoice_locale": null,
|
4365 |
"population": {
|
|
|
4373 |
"scores": [
|
4374 |
{
|
4375 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4376 |
+
"bleu": 0.31667961925197524,
|
4377 |
+
"chrf": 48.49344578612579
|
4378 |
}
|
4379 |
],
|
4380 |
"bleu": 0.31667961925197524,
|
4381 |
+
"chrf": 48.49344578612579,
|
4382 |
"commonvoice_hours": 124.0,
|
4383 |
"commonvoice_locale": "cy",
|
4384 |
"population": {
|
|
|
4393 |
"scores": [
|
4394 |
{
|
4395 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4396 |
+
"bleu": 0.23762161272302187,
|
4397 |
+
"chrf": 42.90409268311042
|
4398 |
}
|
4399 |
],
|
4400 |
"bleu": 0.23762161272302187,
|
4401 |
+
"chrf": 42.90409268311042,
|
4402 |
"commonvoice_hours": 58.0,
|
4403 |
"commonvoice_locale": "et",
|
4404 |
"population": {
|
|
|
4413 |
"scores": [
|
4414 |
{
|
4415 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4416 |
+
"bleu": 0.3066166431048003,
|
4417 |
+
"chrf": 47.792858053998366
|
4418 |
}
|
4419 |
],
|
4420 |
"bleu": 0.3066166431048003,
|
4421 |
+
"chrf": 47.792858053998366,
|
4422 |
"commonvoice_hours": 0.7,
|
4423 |
"commonvoice_locale": "ast",
|
4424 |
"population": {
|
|
|
4432 |
"scores": [
|
4433 |
{
|
4434 |
"model": "openai/gpt-4o-mini",
|
4435 |
+
"bleu": 0.0026829540009563496,
|
4436 |
+
"chrf": 8.366238228343608
|
4437 |
},
|
4438 |
{
|
4439 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4440 |
+
"bleu": 0.0028810767141941676,
|
4441 |
+
"chrf": 11.711522538883516
|
4442 |
},
|
4443 |
{
|
4444 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
4445 |
+
"bleu": 0.002244809403558117,
|
4446 |
+
"chrf": 6.87154254960649
|
4447 |
},
|
4448 |
{
|
4449 |
"model": "google/gemini-2.0-flash-001",
|
4450 |
+
"bleu": 0.1373860974763018,
|
4451 |
+
"chrf": 29.63649387292498
|
4452 |
},
|
4453 |
{
|
4454 |
"model": "deepseek/deepseek-chat",
|
4455 |
+
"bleu": 0.005449384832055512,
|
4456 |
+
"chrf": 13.63303465097306
|
4457 |
},
|
4458 |
{
|
4459 |
"model": "microsoft/phi-4",
|
4460 |
+
"bleu": 0.001220306675003964,
|
4461 |
+
"chrf": 11.614232149229839
|
4462 |
}
|
4463 |
],
|
4464 |
"bleu": 0.02531077151701165,
|
4465 |
+
"chrf": 13.638843998326914,
|
4466 |
"commonvoice_hours": 0.0,
|
4467 |
"commonvoice_locale": "nqo",
|
4468 |
"population": {
|
|
|
4476 |
"scores": [
|
4477 |
{
|
4478 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4479 |
+
"bleu": 0.04422064781985695,
|
4480 |
+
"chrf": 18.101658717442856
|
4481 |
}
|
4482 |
],
|
4483 |
"bleu": 0.04422064781985695,
|
4484 |
+
"chrf": 18.101658717442856,
|
4485 |
"commonvoice_hours": null,
|
4486 |
"commonvoice_locale": null,
|
4487 |
"population": {
|
|
|
4495 |
"scores": [
|
4496 |
{
|
4497 |
"model": "openai/gpt-4o-mini",
|
4498 |
+
"bleu": 0.2433180508520944,
|
4499 |
+
"chrf": 42.16628456571689
|
4500 |
},
|
4501 |
{
|
4502 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4503 |
+
"bleu": 0.2730358021257564,
|
4504 |
+
"chrf": 43.59770121161605
|
4505 |
},
|
4506 |
{
|
4507 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
4508 |
+
"bleu": 0.1659569541464764,
|
4509 |
+
"chrf": 32.04882604989477
|
4510 |
},
|
4511 |
{
|
4512 |
"model": "google/gemini-2.0-flash-001",
|
4513 |
+
"bleu": 0.3868854055493315,
|
4514 |
+
"chrf": 52.982923067584665
|
4515 |
},
|
4516 |
{
|
4517 |
"model": "deepseek/deepseek-chat",
|
4518 |
+
"bleu": 0.30131335750773747,
|
4519 |
+
"chrf": 47.80059076162273
|
4520 |
},
|
4521 |
{
|
4522 |
"model": "microsoft/phi-4",
|
4523 |
+
"bleu": 0.22953082347299453,
|
4524 |
+
"chrf": 39.89195612874355
|
4525 |
}
|
4526 |
],
|
4527 |
"bleu": 0.26667339894239844,
|
4528 |
+
"chrf": 43.08138029752978,
|
4529 |
"commonvoice_hours": 5.1,
|
4530 |
"commonvoice_locale": "lij",
|
4531 |
"population": {
|
|
|
4539 |
"scores": [
|
4540 |
{
|
4541 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4542 |
+
"bleu": 0.2049568393036302,
|
4543 |
+
"chrf": 39.12735936405683
|
4544 |
}
|
4545 |
],
|
4546 |
"bleu": 0.2049568393036302,
|
4547 |
+
"chrf": 39.12735936405683,
|
4548 |
"commonvoice_hours": null,
|
4549 |
"commonvoice_locale": null,
|
4550 |
"population": {
|
|
|
4558 |
"scores": [
|
4559 |
{
|
4560 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4561 |
+
"bleu": 0.1477332953533076,
|
4562 |
+
"chrf": 33.28969144955911
|
4563 |
}
|
4564 |
],
|
4565 |
"bleu": 0.1477332953533076,
|
4566 |
+
"chrf": 33.28969144955911,
|
4567 |
"commonvoice_hours": 282.0,
|
4568 |
"commonvoice_locale": "mhr",
|
4569 |
"population": {
|
|
|
4577 |
"scores": [
|
4578 |
{
|
4579 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4580 |
+
"bleu": 0.26991391704955275,
|
4581 |
+
"chrf": 44.10988575231252
|
4582 |
}
|
4583 |
],
|
4584 |
"bleu": 0.26991391704955275,
|
4585 |
+
"chrf": 44.10988575231252,
|
4586 |
"commonvoice_hours": 0.0,
|
4587 |
"commonvoice_locale": "scn",
|
4588 |
"population": {
|
|
|
4596 |
"scores": [
|
4597 |
{
|
4598 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4599 |
+
"bleu": 0.2478859256009672,
|
4600 |
+
"chrf": 42.936549641246145
|
4601 |
}
|
4602 |
],
|
4603 |
"bleu": 0.2478859256009672,
|
4604 |
+
"chrf": 42.936549641246145,
|
4605 |
"commonvoice_hours": null,
|
4606 |
"commonvoice_locale": null,
|
4607 |
"population": {
|
|
|
4615 |
"scores": [
|
4616 |
{
|
4617 |
"model": "openai/gpt-4o-mini",
|
4618 |
+
"bleu": 0.27335683193570975,
|
4619 |
+
"chrf": 45.920903610737895
|
4620 |
},
|
4621 |
{
|
4622 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4623 |
+
"bleu": 0.28654849898846085,
|
4624 |
+
"chrf": 46.936205424540766
|
4625 |
},
|
4626 |
{
|
4627 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
4628 |
+
"bleu": 0.15248109554681186,
|
4629 |
+
"chrf": 30.516627088468166
|
4630 |
},
|
4631 |
{
|
4632 |
"model": "google/gemini-2.0-flash-001",
|
4633 |
+
"bleu": 0.38954095833662916,
|
4634 |
+
"chrf": 54.945196672005885
|
4635 |
},
|
4636 |
{
|
4637 |
"model": "deepseek/deepseek-chat",
|
4638 |
+
"bleu": 0.3175303995061197,
|
4639 |
+
"chrf": 51.04064318379729
|
4640 |
},
|
4641 |
{
|
4642 |
"model": "microsoft/phi-4",
|
4643 |
+
"bleu": 0.11179045198515461,
|
4644 |
+
"chrf": 30.191257026189298
|
4645 |
}
|
4646 |
],
|
4647 |
"bleu": 0.2552080393831477,
|
4648 |
+
"chrf": 43.25847216762322,
|
4649 |
"commonvoice_hours": 8.7,
|
4650 |
"commonvoice_locale": "mt",
|
4651 |
"population": {
|
|
|
4659 |
"scores": [
|
4660 |
{
|
4661 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4662 |
+
"bleu": 0.2835765541228824,
|
4663 |
+
"chrf": 44.80618475111259
|
4664 |
}
|
4665 |
],
|
4666 |
"bleu": 0.2835765541228824,
|
4667 |
+
"chrf": 44.80618475111259,
|
4668 |
"commonvoice_hours": 0.0,
|
4669 |
"commonvoice_locale": "lb",
|
4670 |
"population": {
|
|
|
4678 |
"scores": [
|
4679 |
{
|
4680 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4681 |
+
"bleu": 0.05723633975042216,
|
4682 |
+
"chrf": 23.461346449303786
|
4683 |
}
|
4684 |
],
|
4685 |
"bleu": 0.05723633975042216,
|
4686 |
+
"chrf": 23.461346449303786,
|
4687 |
"commonvoice_hours": null,
|
4688 |
"commonvoice_locale": null,
|
4689 |
"population": {
|
|
|
4698 |
"scores": [
|
4699 |
{
|
4700 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4701 |
+
"bleu": 0.10451524271139898,
|
4702 |
+
"chrf": 24.713018515709646
|
4703 |
}
|
4704 |
],
|
4705 |
"bleu": 0.10451524271139898,
|
4706 |
+
"chrf": 24.713018515709646,
|
4707 |
"commonvoice_hours": null,
|
4708 |
"commonvoice_locale": null,
|
4709 |
"population": {
|
|
|
4717 |
"scores": [
|
4718 |
{
|
4719 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4720 |
+
"bleu": 0.2142644347281729,
|
4721 |
+
"chrf": 40.04812999157868
|
4722 |
}
|
4723 |
],
|
4724 |
"bleu": 0.2142644347281729,
|
4725 |
+
"chrf": 40.04812999157868,
|
4726 |
"commonvoice_hours": 0.1,
|
4727 |
"commonvoice_locale": "is",
|
4728 |
"population": {
|
|
|
4736 |
"scores": [
|
4737 |
{
|
4738 |
"model": "openai/gpt-4o-mini",
|
4739 |
+
"bleu": 0.13327372905795537,
|
4740 |
+
"chrf": 28.9583532166856
|
4741 |
},
|
4742 |
{
|
4743 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4744 |
+
"bleu": 0.11602460228698847,
|
4745 |
+
"chrf": 29.156949243212015
|
4746 |
},
|
4747 |
{
|
4748 |
"model": "mistralai/mistral-small-24b-instruct-2501",
|
4749 |
+
"bleu": 0.05771585788755527,
|
4750 |
+
"chrf": 16.752178728973906
|
4751 |
},
|
4752 |
{
|
4753 |
"model": "google/gemini-2.0-flash-001",
|
4754 |
+
"bleu": 0.2585259997356889,
|
4755 |
+
"chrf": 45.18784342425295
|
4756 |
},
|
4757 |
{
|
4758 |
"model": "deepseek/deepseek-chat",
|
4759 |
+
"bleu": 0.22221137013078898,
|
4760 |
+
"chrf": 39.7496231353589
|
4761 |
},
|
4762 |
{
|
4763 |
"model": "microsoft/phi-4",
|
4764 |
+
"bleu": 0.04756300118196289,
|
4765 |
+
"chrf": 21.060764155029197
|
4766 |
}
|
4767 |
],
|
4768 |
"bleu": 0.13921909338015664,
|
4769 |
+
"chrf": 30.144285317252095,
|
4770 |
"commonvoice_hours": null,
|
4771 |
"commonvoice_locale": null,
|
4772 |
"population": {
|
|
|
4781 |
"scores": [
|
4782 |
{
|
4783 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4784 |
+
"bleu": 0.22725256040555009,
|
4785 |
+
"chrf": 42.07005703444819
|
4786 |
}
|
4787 |
],
|
4788 |
"bleu": 0.22725256040555009,
|
4789 |
+
"chrf": 42.07005703444819,
|
4790 |
"commonvoice_hours": 0.0,
|
4791 |
"commonvoice_locale": "crh",
|
4792 |
"population": {
|
|
|
4800 |
"scores": [
|
4801 |
{
|
4802 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4803 |
+
"bleu": 0.21648792499796674,
|
4804 |
+
"chrf": 41.57061175824069
|
4805 |
}
|
4806 |
],
|
4807 |
"bleu": 0.21648792499796674,
|
4808 |
+
"chrf": 41.57061175824069,
|
4809 |
"commonvoice_hours": 0.0,
|
4810 |
"commonvoice_locale": "pap-AW",
|
4811 |
"population": {
|
|
|
4821 |
"scores": [
|
4822 |
{
|
4823 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4824 |
+
"bleu": 0.13475273241606922,
|
4825 |
+
"chrf": 32.044009672423776
|
4826 |
}
|
4827 |
],
|
4828 |
"bleu": 0.13475273241606922,
|
4829 |
+
"chrf": 32.044009672423776,
|
4830 |
"commonvoice_hours": 28.0,
|
4831 |
"commonvoice_locale": "ltg",
|
4832 |
"population": {
|
|
|
4840 |
"scores": [
|
4841 |
{
|
4842 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4843 |
+
"bleu": 0.17610729049259877,
|
4844 |
+
"chrf": 35.01961886760811
|
4845 |
}
|
4846 |
],
|
4847 |
"bleu": 0.17610729049259877,
|
4848 |
+
"chrf": 35.01961886760811,
|
4849 |
"commonvoice_hours": null,
|
4850 |
"commonvoice_locale": null,
|
4851 |
"population": {
|
|
|
4859 |
"scores": [
|
4860 |
{
|
4861 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4862 |
+
"bleu": 0.2154279041570466,
|
4863 |
+
"chrf": 37.40630914857015
|
4864 |
}
|
4865 |
],
|
4866 |
"bleu": 0.2154279041570466,
|
4867 |
+
"chrf": 37.40630914857015,
|
4868 |
"commonvoice_hours": null,
|
4869 |
"commonvoice_locale": null,
|
4870 |
"population": {
|
|
|
4878 |
"scores": [
|
4879 |
{
|
4880 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4881 |
+
"bleu": 0.21180629663838063,
|
4882 |
+
"chrf": 39.28673819745006
|
4883 |
}
|
4884 |
],
|
4885 |
"bleu": 0.21180629663838063,
|
4886 |
+
"chrf": 39.28673819745006,
|
4887 |
"commonvoice_hours": 0.0,
|
4888 |
"commonvoice_locale": "fo",
|
4889 |
"population": {
|
|
|
4898 |
"scores": [
|
4899 |
{
|
4900 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4901 |
+
"bleu": 0.2255876860328074,
|
4902 |
+
"chrf": 40.6191779521821
|
4903 |
}
|
4904 |
],
|
4905 |
"bleu": 0.2255876860328074,
|
4906 |
+
"chrf": 40.6191779521821,
|
4907 |
"commonvoice_hours": null,
|
4908 |
"commonvoice_locale": null,
|
4909 |
"population": {
|
|
|
4917 |
"scores": [
|
4918 |
{
|
4919 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4920 |
+
"bleu": 0.14313294345831834,
|
4921 |
+
"chrf": 32.44676491537583
|
4922 |
}
|
4923 |
],
|
4924 |
"bleu": 0.14313294345831834,
|
4925 |
+
"chrf": 32.44676491537583,
|
4926 |
"commonvoice_hours": null,
|
4927 |
"commonvoice_locale": null,
|
4928 |
"population": {
|
|
|
4936 |
"scores": [
|
4937 |
{
|
4938 |
"model": "meta-llama/llama-3.3-70b-instruct",
|
4939 |
+
"bleu": 0.27440987441620224,
|
4940 |
+
"chrf": 44.40715599582661
|
4941 |
}
|
4942 |
],
|
4943 |
"bleu": 0.27440987441620224,
|
4944 |
+
"chrf": 44.40715599582661,
|
4945 |
"commonvoice_hours": 1436.0,
|
4946 |
"commonvoice_locale": "eo",
|
4947 |
"population": {
|