Translation
Transformers
PyTorch
English
Romanian
mt5
text2text-generation
wmt16
Lvxue
Eval Results (legacy)
Instructions to use Lvxue/finetuned-mt5-small-10epoch with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Lvxue/finetuned-mt5-small-10epoch with Transformers:
# Use a pipeline as a high-level helper # Warning: Pipeline type "translation" is no longer supported in transformers v5. # You must load the model directly (see below) or downgrade to v4.x with: # 'pip install "transformers<5.0.0' from transformers import pipeline pipe = pipeline("translation", model="Lvxue/finetuned-mt5-small-10epoch")# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("Lvxue/finetuned-mt5-small-10epoch") model = AutoModelForSeq2SeqLM.from_pretrained("Lvxue/finetuned-mt5-small-10epoch") - Notebooks
- Google Colab
- Kaggle
Commit ·
0e0e10f
1
Parent(s): f89604e
Add evaluation results on the ro-en config of wmt16 (#1)
Browse files- Add evaluation results on the ro-en config of wmt16 (88bad14cd35d0305002a2b0cdee40d91c2612047)
Co-authored-by: Evaluation Bot <autoevaluator@users.noreply.huggingface.co>
README.md
CHANGED
|
@@ -1,17 +1,41 @@
|
|
| 1 |
---
|
| 2 |
language:
|
| 3 |
-
- en
|
| 4 |
-
- ro
|
| 5 |
-
license: apache-2.0
|
| 6 |
tags:
|
| 7 |
- translation
|
| 8 |
- wmt16
|
| 9 |
- Lvxue
|
| 10 |
datasets:
|
| 11 |
-
- wmt16
|
| 12 |
metrics:
|
| 13 |
- sacrebleu
|
| 14 |
-
- bleu
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
---
|
| 16 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
| 17 |
should probably proofread and complete it, then remove this comment. -->
|
|
|
|
| 1 |
---
|
| 2 |
language:
|
| 3 |
+
- en
|
| 4 |
+
- ro
|
| 5 |
+
license: apache-2.0
|
| 6 |
tags:
|
| 7 |
- translation
|
| 8 |
- wmt16
|
| 9 |
- Lvxue
|
| 10 |
datasets:
|
| 11 |
+
- wmt16
|
| 12 |
metrics:
|
| 13 |
- sacrebleu
|
| 14 |
+
- bleu
|
| 15 |
+
model-index:
|
| 16 |
+
- name: Lvxue/finetuned-mt5-small-10epoch
|
| 17 |
+
results:
|
| 18 |
+
- task:
|
| 19 |
+
type: translation
|
| 20 |
+
name: Translation
|
| 21 |
+
dataset:
|
| 22 |
+
name: wmt16
|
| 23 |
+
type: wmt16
|
| 24 |
+
config: ro-en
|
| 25 |
+
split: test
|
| 26 |
+
metrics:
|
| 27 |
+
- name: BLEU
|
| 28 |
+
type: bleu
|
| 29 |
+
value: 6.0012
|
| 30 |
+
verified: true
|
| 31 |
+
- name: loss
|
| 32 |
+
type: loss
|
| 33 |
+
value: 1.7407585382461548
|
| 34 |
+
verified: true
|
| 35 |
+
- name: gen_len
|
| 36 |
+
type: gen_len
|
| 37 |
+
value: 18.2281
|
| 38 |
+
verified: true
|
| 39 |
---
|
| 40 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
| 41 |
should probably proofread and complete it, then remove this comment. -->
|