Instructions to use IVN-RIN/bioBIT with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use IVN-RIN/bioBIT with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="IVN-RIN/bioBIT")# Load model directly from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("IVN-RIN/bioBIT") model = AutoModelForMaskedLM.from_pretrained("IVN-RIN/bioBIT") - Inference
- Notebooks
- Google Colab
- Kaggle
Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- it
|
| 4 |
+
|
| 5 |
+
tags:
|
| 6 |
+
- Biomedical Language Modeling
|
| 7 |
+
|
| 8 |
+
widget:
|
| 9 |
+
- text: "L'asma allergica è una patologia dell'[MASK] respiratorio causata dalla presenza di allergeni responsabili dell'infiammazione dell'albero bronchiale."
|
| 10 |
+
example_title: "Example 1"
|
| 11 |
+
- text: "Il pancreas produce diversi [MASK] molto importanti tra i quali l'insulina e il glucagone."
|
| 12 |
+
example_title: "Example 2"
|
| 13 |
+
- text: "Il GABA è un amminoacido ed è il principale neurotrasmettitore inibitorio del [MASK]."
|
| 14 |
+
example_title: "Example 3"
|
| 15 |
+
---
|