Translation
Transformers
TensorBoard
Safetensors
English
French
marian
text2text-generation
Generated from Trainer
Eval Results (legacy)
Instructions to use Areeb123/En-Fr_Translation_Model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Areeb123/En-Fr_Translation_Model 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="Areeb123/En-Fr_Translation_Model")# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("Areeb123/En-Fr_Translation_Model") model = AutoModelForSeq2SeqLM.from_pretrained("Areeb123/En-Fr_Translation_Model") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -24,6 +24,9 @@ model-index:
|
|
| 24 |
- name: Bleu
|
| 25 |
type: bleu
|
| 26 |
value: 52.78125912187245
|
|
|
|
|
|
|
|
|
|
| 27 |
---
|
| 28 |
|
| 29 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
|
@@ -71,4 +74,4 @@ The following hyperparameters were used during training:
|
|
| 71 |
- Transformers 4.35.2
|
| 72 |
- Pytorch 2.1.0+cu118
|
| 73 |
- Datasets 2.15.0
|
| 74 |
-
- Tokenizers 0.15.0
|
|
|
|
| 24 |
- name: Bleu
|
| 25 |
type: bleu
|
| 26 |
value: 52.78125912187245
|
| 27 |
+
language:
|
| 28 |
+
- en
|
| 29 |
+
- fr
|
| 30 |
---
|
| 31 |
|
| 32 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
|
|
|
| 74 |
- Transformers 4.35.2
|
| 75 |
- Pytorch 2.1.0+cu118
|
| 76 |
- Datasets 2.15.0
|
| 77 |
+
- Tokenizers 0.15.0
|