Instructions to use IVN-RIN/medBIT-r3-plus with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use IVN-RIN/medBIT-r3-plus with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="IVN-RIN/medBIT-r3-plus")# Load model directly from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("IVN-RIN/medBIT-r3-plus") model = AutoModelForMaskedLM.from_pretrained("IVN-RIN/medBIT-r3-plus", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -7,10 +7,10 @@ tags:
|
|
| 7 |
- biomedical nlp
|
| 8 |
|
| 9 |
widget:
|
| 10 |
-
- text: "La secrezione endocrina nel
|
| 11 |
example_title: "Example 1: Pancreas"
|
| 12 |
-
- text: "La [MASK]
|
| 13 |
example_title: "Example 2: Atrial fibrillation"
|
| 14 |
-
- text: "Il tumore della
|
| 15 |
example_title: "Example 3: BRCA"
|
| 16 |
---
|
|
|
|
| 7 |
- biomedical nlp
|
| 8 |
|
| 9 |
widget:
|
| 10 |
+
- text: "La secrezione endocrina nel [MASK] viene svolta dalla cellule endocrine raggruppate nelle isole di Langerhans."
|
| 11 |
example_title: "Example 1: Pancreas"
|
| 12 |
+
- text: "La fibrillazione [MASK] è una patologia cardiaca e si verifica quando l’attività atriale è irregolare e disorganizzata."
|
| 13 |
example_title: "Example 2: Atrial fibrillation"
|
| 14 |
+
- text: "Il tumore della [MASK] è associato a una mutazione genetica ereditaria presente su due geni (BRCA1 e BRCA2)."
|
| 15 |
example_title: "Example 3: BRCA"
|
| 16 |
---
|