Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language: multilingual
|
| 3 |
+
task_ids:
|
| 4 |
+
- token-classification
|
| 5 |
+
tags:
|
| 6 |
+
- clinical, medical, ner, healthcare
|
| 7 |
+
---
|
| 8 |
+
|
| 9 |
+
## Model Card for Multilingual-Symptom-Xlm-Roberta-Large-Multilabel
|
| 10 |
+
|
| 11 |
+
### Description
|
| 12 |
+
|
| 13 |
+
Multilingual clinical NER model for symptom 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/multilingual-symptom-xlm-roberta-large-multilabel"
|
| 27 |
+
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
| 28 |
+
model = AutoModelForTokenClassification.from_pretrained(model_name)
|
| 29 |
+
|
| 30 |
+
```
|
| 31 |
+
|
| 32 |
+
### Citation
|
| 33 |
+
|
| 34 |
+
```bibtex
|
| 35 |
+
@inproceedings{danu2026siemens,
|
| 36 |
+
title={SIEMENS at\# SMM4H--HeaRD 2026: The Impact of Training Strategy and Backbone Selection on BERT-based Multilingual Clinical NER},
|
| 37 |
+
author={Danu, Manuela Daniela},
|
| 38 |
+
booktitle={Proceedings of the 11th Social Media Mining for Health Research and Applications (SMM4H-HeaRD 2026) Workshop and Shared Tasks},
|
| 39 |
+
pages={216--221},
|
| 40 |
+
year={2026}
|
| 41 |
+
}
|
| 42 |
+
```
|
| 43 |
+
|
| 44 |
+
### Acknowledgments
|
| 45 |
+
This work received funding from the European Union’s Horizon Europe research and innovation programme under Grant Agreement No. 101057849 (DataTools4Heart project).
|