Prototype-Enhanced Multi-View Learning for Thyroid Nodule Ultrasound Classification
Paper • 2603.28315 • Published
Trained on TN5000 with exact PEMV paper recipe, optimized for AUC-ROC.
| Metric | Value | 95% CI |
|---|---|---|
| Accuracy | 0.8891 | - |
| Sensitivity | 0.9175 | [0.8948, 0.9366] |
| Specificity | 0.8182 | [0.7685, 0.8611] |
| PPV | 0.9266 | [0.9048, 0.9447] |
| NPV | 0.7986 | [0.7481, 0.8430] |
| AUC-ROC | 0.9313 | [0.9125, 0.9483] |
This model repository was generated by ML Intern, an agent for machine learning research and development on the Hugging Face Hub.
from transformers import AutoModelForCausalLM, AutoTokenizer
model_id = 'Johnyquest7/Thyroid_EfficientNetV2'
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(model_id)
For non-causal architectures, replace AutoModelForCausalLM with the appropriate AutoModel class.