Update ML Intern artifact metadata
Browse files
README.md
CHANGED
|
@@ -1,13 +1,14 @@
|
|
| 1 |
---
|
| 2 |
license: cc-by-4.0
|
| 3 |
tags:
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
|
|
|
| 9 |
datasets:
|
| 10 |
-
|
| 11 |
---
|
| 12 |
# Thyroid Nodule Classification - EfficientNetV2-S (AUC-Optimized v4)
|
| 13 |
Frozen backbone, deeper head with Dropout 0.5. Optimized for AUC-ROC.
|
|
@@ -22,3 +23,23 @@ Frozen backbone, deeper head with Dropout 0.5. Optimized for AUC-ROC.
|
|
| 22 |
| AUC-ROC | 0.6835 | [0.6467, 0.7199] |
|
| 23 |
## Citation
|
| 24 |
Yu, Xiaoxian et al. "TN5000..." Scientific Data (Nature), 2025.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: cc-by-4.0
|
| 3 |
tags:
|
| 4 |
+
- medical-imaging
|
| 5 |
+
- ultrasound
|
| 6 |
+
- thyroid
|
| 7 |
+
- classification
|
| 8 |
+
- efficientnet
|
| 9 |
+
- ml-intern
|
| 10 |
datasets:
|
| 11 |
+
- Johnyquest7/TN5000-thyroid-nodule-classification
|
| 12 |
---
|
| 13 |
# Thyroid Nodule Classification - EfficientNetV2-S (AUC-Optimized v4)
|
| 14 |
Frozen backbone, deeper head with Dropout 0.5. Optimized for AUC-ROC.
|
|
|
|
| 23 |
| AUC-ROC | 0.6835 | [0.6467, 0.7199] |
|
| 24 |
## Citation
|
| 25 |
Yu, Xiaoxian et al. "TN5000..." Scientific Data (Nature), 2025.
|
| 26 |
+
|
| 27 |
+
<!-- ml-intern-provenance -->
|
| 28 |
+
## Generated by ML Intern
|
| 29 |
+
|
| 30 |
+
This model repository was generated by [ML Intern](https://github.com/huggingface/ml-intern), an agent for machine learning research and development on the Hugging Face Hub.
|
| 31 |
+
|
| 32 |
+
- Try ML Intern: https://smolagents-ml-intern.hf.space
|
| 33 |
+
- Source code: https://github.com/huggingface/ml-intern
|
| 34 |
+
|
| 35 |
+
## Usage
|
| 36 |
+
|
| 37 |
+
```python
|
| 38 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 39 |
+
|
| 40 |
+
model_id = 'Johnyquest7/Thyroid_EfficientNetV2'
|
| 41 |
+
tokenizer = AutoTokenizer.from_pretrained(model_id)
|
| 42 |
+
model = AutoModelForCausalLM.from_pretrained(model_id)
|
| 43 |
+
```
|
| 44 |
+
|
| 45 |
+
For non-causal architectures, replace `AutoModelForCausalLM` with the appropriate `AutoModel` class.
|