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 |
|
| 13 |
# Thyroid Nodule Classification – EfficientNetV2-S (AUC-Optimized v2)
|
|
@@ -50,3 +51,23 @@ This model was trained on the TN5000 thyroid ultrasound dataset for binary class
|
|
| 50 |
## Citation
|
| 51 |
|
| 52 |
Yu, Xiaoxian et al. "TN5000: An Ultrasound Image Dataset for Thyroid Nodule Detection and Classification." 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 |
|
| 14 |
# Thyroid Nodule Classification – EfficientNetV2-S (AUC-Optimized v2)
|
|
|
|
| 51 |
## Citation
|
| 52 |
|
| 53 |
Yu, Xiaoxian et al. "TN5000: An Ultrasound Image Dataset for Thyroid Nodule Detection and Classification." Scientific Data (Nature), 2025.
|
| 54 |
+
|
| 55 |
+
<!-- ml-intern-provenance -->
|
| 56 |
+
## Generated by ML Intern
|
| 57 |
+
|
| 58 |
+
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.
|
| 59 |
+
|
| 60 |
+
- Try ML Intern: https://smolagents-ml-intern.hf.space
|
| 61 |
+
- Source code: https://github.com/huggingface/ml-intern
|
| 62 |
+
|
| 63 |
+
## Usage
|
| 64 |
+
|
| 65 |
+
```python
|
| 66 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 67 |
+
|
| 68 |
+
model_id = 'Johnyquest7/Thyroid_EfficientNetV2'
|
| 69 |
+
tokenizer = AutoTokenizer.from_pretrained(model_id)
|
| 70 |
+
model = AutoModelForCausalLM.from_pretrained(model_id)
|
| 71 |
+
```
|
| 72 |
+
|
| 73 |
+
For non-causal architectures, replace `AutoModelForCausalLM` with the appropriate `AutoModel` class.
|