Views
No views yet
it to ca, published by Windstorm Labs.Helsinki-NLP/opus-mt-it-ca, licensed apache-2.0.
Windstorm Labs did not train the original model. This notice provides the attribution the
licence requires.| Method | deep-finetune |
| Tensors modified | 253 of 254 |
| Max absolute weight delta | 1.644e-02 |
| 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-it-ca")
4model = AutoModelForSeq2SeqLM.from_pretrained("WindyTranslate/translate-it-ca")
5
6batch = tok(["<your text here>"], return_tensors="pt", padding=True)
7print(tok.batch_decode(model.generate(**batch), skip_special_tokens=True))it to ca.