File size: 450 Bytes
f44f2a5 e3b24ae f44f2a5 85f6c1b 566f4e3 a82899f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
---
datasets:
- opus_books
- wmt14
language:
- en
- fr
metrics:
- bleu
pipeline_tag: translation
---
# medical-mt-fr-en
This model was fine-tuned based on `Helsinki-NLP/opus-mt-fr-en` on wmt14 dataset.
source language: French
target language: English
Inference
```python
from transformers import pipeline
text = 'Coombs négatif anémie hémolytique'
translator = pipeline("translation", model="kwang123/medical-mt-fr-en")
translator(text)
``` |