--- 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](https://huggingface.co/Helsinki-NLP/opus-mt-fr-en) on WMT14 medical translation 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) ```