Views
No views yet
it to en, published by Windstorm Labs.Helsinki-NLP/opus-mt-tc-big-it-en, licensed cc-by-4.0.
Windstorm Labs did not train the original model. This notice provides the attribution the
licence requires.| Method | deep-finetune |
| Tensors modified | 37 of 254 |
| Max absolute weight delta | 2.943e-01 |
| Verified | tensor-by-tensor against the upstream original, 2026-07-26 |
.bin
containers hash differently even when the tensors inside are identical, so a file-hash
mismatch would prove nothing.1from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
2
3tok = AutoTokenizer.from_pretrained("WindyTranslate/translate-tc-big-it-en")
4model = AutoModelForSeq2SeqLM.from_pretrained("WindyTranslate/translate-tc-big-it-en")
5
6batch = tok(["<your text here>"], return_tensors="pt", padding=True)
7print(tok.batch_decode(model.generate(**batch), skip_special_tokens=True))it to en.