Instructions to use CLAck/en-vi with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use CLAck/en-vi 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="CLAck/en-vi")# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("CLAck/en-vi") model = AutoModelForSeq2SeqLM.from_pretrained("CLAck/en-vi", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Commit ·
2393e6a
1
Parent(s): 6c4a14b
Update README.md
Browse files
README.md
CHANGED
|
@@ -19,6 +19,7 @@ The second phase of training (pure) is performed on a dataset containing only En
|
|
| 19 |
### Training results
|
| 20 |
|
| 21 |
MIXED
|
|
|
|
| 22 |
| Epoch | Bleu |
|
| 23 |
|:-----:|:-------:|
|
| 24 |
| 1.0 | 26.2407 |
|
|
@@ -29,6 +30,7 @@ MIXED
|
|
| 29 |
|
| 30 |
|
| 31 |
PURE
|
|
|
|
| 32 |
| Epoch | Bleu |
|
| 33 |
|:-----:|:-------:|
|
| 34 |
| 1.0 | 37.3169 |
|
|
|
|
| 19 |
### Training results
|
| 20 |
|
| 21 |
MIXED
|
| 22 |
+
|
| 23 |
| Epoch | Bleu |
|
| 24 |
|:-----:|:-------:|
|
| 25 |
| 1.0 | 26.2407 |
|
|
|
|
| 30 |
|
| 31 |
|
| 32 |
PURE
|
| 33 |
+
|
| 34 |
| Epoch | Bleu |
|
| 35 |
|:-----:|:-------:|
|
| 36 |
| 1.0 | 37.3169 |
|