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