Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language: multilingual
|
| 3 |
+
task_ids:
|
| 4 |
+
- token-classification
|
| 5 |
+
tags:
|
| 6 |
+
- clinical, medical, ner, healthcare, cardiology, multilingual, disease
|
| 7 |
+
---
|
| 8 |
+
|
| 9 |
+
## Model Card for Cardio-Ner-Multilingual-Disease-Xlm-Roberta-Large-Multiclass
|
| 10 |
+
|
| 11 |
+
### Description
|
| 12 |
+
|
| 13 |
+
Multilingual cardiology NER model for disease recognition
|
| 14 |
+
|
| 15 |
+
### Model Details
|
| 16 |
+
|
| 17 |
+
- **Language**: MULTILINGUAL
|
| 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-multilingual-disease-xlm-roberta-large-multiclass"
|
| 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).
|