Instructions to use SLPG/Biomedical_French_to_English with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use SLPG/Biomedical_French_to_English with Transformers:
# Use a pipeline as a high-level helper # Warning: Pipeline type "translation" is no longer supported in transformers v5. # You must load the model directly (see below) or downgrade to v4.x with: # 'pip install "transformers<5.0.0' from transformers import pipeline pipe = pipeline("translation", model="SLPG/Biomedical_French_to_English")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("SLPG/Biomedical_French_to_English", dtype="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -2,10 +2,14 @@
|
|
| 2 |
language:
|
| 3 |
- fr
|
| 4 |
- en
|
|
|
|
| 5 |
metrics:
|
| 6 |
- bleu
|
|
|
|
| 7 |
library_name: fairseq
|
|
|
|
| 8 |
pipeline_tag: translation
|
|
|
|
| 9 |
tags:
|
| 10 |
- finance
|
| 11 |
- Biomedical
|
|
|
|
| 2 |
language:
|
| 3 |
- fr
|
| 4 |
- en
|
| 5 |
+
|
| 6 |
metrics:
|
| 7 |
- bleu
|
| 8 |
+
|
| 9 |
library_name: fairseq
|
| 10 |
+
|
| 11 |
pipeline_tag: translation
|
| 12 |
+
|
| 13 |
tags:
|
| 14 |
- finance
|
| 15 |
- Biomedical
|