Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language: es
|
| 3 |
+
task_ids:
|
| 4 |
+
- token-classification
|
| 5 |
+
tags:
|
| 6 |
+
- clinical, medical, ner, healthcare, cardiology, spanish, multilabel
|
| 7 |
+
---
|
| 8 |
+
|
| 9 |
+
## Model Card for Cardio-Ner-Es-Roberta-Biomedical-Multilabel
|
| 10 |
+
|
| 11 |
+
### Description
|
| 12 |
+
|
| 13 |
+
Spanish cardiology multilabel NER model for disease, medication, procedure, and symptom recognition, fine-tuned on roberta-biomedical.
|
| 14 |
+
|
| 15 |
+
### Model Details
|
| 16 |
+
|
| 17 |
+
- **Language**: ES
|
| 18 |
+
- **Task**: token-classification
|
| 19 |
+
- **Framework**: pytorch
|
| 20 |
+
|
| 21 |
+
### How to Use
|
| 22 |
+
|
| 23 |
+
```python
|
| 24 |
+
from transformers import AutoTokenizer, AutoModelForTokenClassification
|
| 25 |
+
|
| 26 |
+
model_name = "DT4H/cardio-ner-es-roberta-biomedical-multilabel"
|
| 27 |
+
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
| 28 |
+
model = AutoModelForTokenClassification.from_pretrained(model_name)
|
| 29 |
+
|
| 30 |
+
```
|
| 31 |
+
|
| 32 |
+
### Acknowledgments
|
| 33 |
+
This work received funding from the European Union’s Horizon Europe research and innovation programme under Grant Agreement No. 101057849 (DataTools4Heart project).
|