Views
No views yet


| Benchmark | BioBERT | ClinicalBERT | PubMedBERT | MedicalNLP-Pro | |
|---|---|---|---|---|---|
| Clinical Understanding | Clinical Notes Comprehension | 0.723 | 0.756 | 0.741 | 0.639 |
| Medical Entity Recognition | 0.812 | 0.834 | 0.821 | 0.760 | |
| Symptom Extraction | 0.698 | 0.712 | 0.705 | 0.622 | |
| Drug Analysis | Drug Interaction Detection | 0.654 | 0.672 | 0.668 | 0.571 |
| Medication Classification | 0.789 | 0.801 | 0.795 | 0.707 | |
| Adverse Effect Prediction | 0.621 | 0.645 | 0.633 | 0.570 | |
| Dosage Extraction | 0.756 | 0.778 | 0.762 | 0.740 | |
| Disease Classification | ICD-10 Coding | 0.682 | 0.698 | 0.691 | 0.629 |
| Disease Severity Assessment | 0.598 | 0.623 | 0.612 | 0.641 | |
| Comorbidity Detection | 0.645 | 0.667 | 0.658 | 0.608 | |
| Prognosis Prediction | 0.534 | 0.556 | 0.548 | 0.592 | |
| Specialized Tasks | Radiology Report Analysis | 0.712 | 0.734 | 0.725 | 0.700 |
| Lab Result Interpretation | 0.678 | 0.695 | 0.689 | 0.635 | |
| Treatment Recommendation | 0.589 | 0.612 | 0.601 | 0.505 | |
| Patient Risk Stratification | 0.623 | 0.645 | 0.638 | 0.617 |
1from transformers import AutoModel, AutoTokenizer
2
3model = AutoModel.from_pretrained("MedicalNLP-Pro")
4tokenizer = AutoTokenizer.from_pretrained("MedicalNLP-Pro")1clinical_note = "Patient presents with chest pain, shortness of breath..."
2inputs = tokenizer(clinical_note, return_tensors="pt")
3outputs = model(**inputs)