Translation
Transformers
PyTorch
TensorFlow
Safetensors
marian
text2text-generation
opus-mt-tc
Eval Results (legacy)
Instructions to use Helsinki-NLP/opus-mt-tc-big-itc-itc with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Helsinki-NLP/opus-mt-tc-big-itc-itc 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="Helsinki-NLP/opus-mt-tc-big-itc-itc")# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("Helsinki-NLP/opus-mt-tc-big-itc-itc") model = AutoModelForSeq2SeqLM.from_pretrained("Helsinki-NLP/opus-mt-tc-big-itc-itc") - Notebooks
- Google Colab
- Kaggle
Initial commit
Browse files
README.md
CHANGED
|
@@ -2341,5 +2341,5 @@ The work is supported by the [European Language Grid](https://www.european-langu
|
|
| 2341 |
|
| 2342 |
* transformers version: 4.16.2
|
| 2343 |
* OPUS-MT git hash: 8b9f0b0
|
| 2344 |
-
* port time: Fri Aug 12 23:
|
| 2345 |
* port machine: LM0-400-22516.local
|
|
|
|
| 2341 |
|
| 2342 |
* transformers version: 4.16.2
|
| 2343 |
* OPUS-MT git hash: 8b9f0b0
|
| 2344 |
+
* port time: Fri Aug 12 23:57:49 EEST 2022
|
| 2345 |
* port machine: LM0-400-22516.local
|