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 - ResNet-18 (PEMV-Style Correct)
|
| 13 |
Trained on TN5000 with exact PEMV paper recipe, optimized for AUC-ROC.
|
|
@@ -31,3 +32,23 @@ Trained on TN5000 with exact PEMV paper recipe, optimized for AUC-ROC.
|
|
| 31 |
|
| 32 |
## References
|
| 33 |
- PEMV-Thyroid (arXiv:2603.28315): Prototype-Enhanced Multi-View Learning for Thyroid Nodule Ultrasound Classification
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: cc-by-4.0
|
| 3 |
tags:
|
| 4 |
+
- medical-imaging
|
| 5 |
+
- ultrasound
|
| 6 |
+
- thyroid
|
| 7 |
+
- classification
|
| 8 |
+
- resnet
|
| 9 |
+
- ml-intern
|
| 10 |
datasets:
|
| 11 |
+
- Johnyquest7/TN5000-thyroid-nodule-classification
|
| 12 |
---
|
| 13 |
# Thyroid Nodule Classification - ResNet-18 (PEMV-Style Correct)
|
| 14 |
Trained on TN5000 with exact PEMV paper recipe, optimized for AUC-ROC.
|
|
|
|
| 32 |
|
| 33 |
## References
|
| 34 |
- PEMV-Thyroid (arXiv:2603.28315): Prototype-Enhanced Multi-View Learning for Thyroid Nodule Ultrasound Classification
|
| 35 |
+
|
| 36 |
+
<!-- ml-intern-provenance -->
|
| 37 |
+
## Generated by ML Intern
|
| 38 |
+
|
| 39 |
+
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.
|
| 40 |
+
|
| 41 |
+
- Try ML Intern: https://smolagents-ml-intern.hf.space
|
| 42 |
+
- Source code: https://github.com/huggingface/ml-intern
|
| 43 |
+
|
| 44 |
+
## Usage
|
| 45 |
+
|
| 46 |
+
```python
|
| 47 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 48 |
+
|
| 49 |
+
model_id = 'Johnyquest7/Thyroid_EfficientNetV2'
|
| 50 |
+
tokenizer = AutoTokenizer.from_pretrained(model_id)
|
| 51 |
+
model = AutoModelForCausalLM.from_pretrained(model_id)
|
| 52 |
+
```
|
| 53 |
+
|
| 54 |
+
For non-causal architectures, replace `AutoModelForCausalLM` with the appropriate `AutoModel` class.
|