Demo - DE
Model Description
Named Entity Recognition model for demo in DE.
- Base Model: DedalusHealthCare/tinybert-mlm-de
- Architecture: tinybert
Intended Use
This model is designed for medical and clinical NLP tasks. It should be used by healthcare professionals and researchers for:
- Clinical text analysis
- Medical document processing
- Healthcare data extraction
Not intended for:
- Direct clinical decision making without human oversight
- Use outside the trained domain or language
Evaluation Results
Evaluation Set: unknown
Overall Performance
| Metric | Score |
|---|
Per-Class Performance
| Class | Precision | Recall | F1-Score | Support |
|---|
Usage Example
from transformers import AutoTokenizer, AutoModelForTokenClassification, pipeline
model_name = "DedalusHealthCare/tinybert-demo-de"
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForTokenClassification.from_pretrained(model_name)
# Using pipeline
ner_pipeline = pipeline("token-classification", model=model, tokenizer=tokenizer, aggregation_strategy="simple")
text = "Patient has diabetes and hypertension."
entities = ner_pipeline(text)
for entity in entities:
print(f"{entity['entity_group']}: {entity['word']} ({entity['score']:.2f})")
Limitations
- Model is trained on medical/clinical text and may not generalize to other domains
- Performance may vary on text from different healthcare systems or documentation styles
- Should not be used as the sole basis for clinical decisions
- Requires validation in specific deployment contexts
Citation
If you use this model, please cite:
@misc{dedalus-medical-nlp,
author = {DH Healthcare GmbH},
title = {Medical NLP Models},
year = {2025},
publisher = {HuggingFace},
howpublished = {\url{https://huggingface.co/DedalusHealthCare}}
}
- Downloads last month
- 30
Model tree for DedalusHealthCare/tinybert-ner-demo-de
Base model
DedalusHealthCare/tinybert-mlm-de