PyTorch
medical-imaging
ultrasound
thyroid
classification
resnet
ml-intern
Johnyquest7 commited on
Commit
5b2e504
·
verified ·
1 Parent(s): b6106a5

Update ML Intern artifact metadata

Browse files
Files changed (1) hide show
  1. README.md +27 -6
README.md CHANGED
@@ -1,13 +1,14 @@
1
  ---
2
  license: cc-by-4.0
3
  tags:
4
- - medical-imaging
5
- - ultrasound
6
- - thyroid
7
- - classification
8
- - efficientnet
 
9
  datasets:
10
- - Johnyquest7/TN5000-thyroid-nodule-classification
11
  ---
12
 
13
  # Thyroid Nodule Classification – EfficientNetV2-S (AUC-Optimized)
@@ -43,3 +44,23 @@ This model was trained on the TN5000 thyroid ultrasound dataset for binary class
43
  ## Citation
44
 
45
  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)
 
44
  ## Citation
45
 
46
  Yu, Xiaoxian et al. "TN5000: An Ultrasound Image Dataset for Thyroid Nodule Detection and Classification." Scientific Data (Nature), 2025.
47
+
48
+ <!-- ml-intern-provenance -->
49
+ ## Generated by ML Intern
50
+
51
+ 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.
52
+
53
+ - Try ML Intern: https://smolagents-ml-intern.hf.space
54
+ - Source code: https://github.com/huggingface/ml-intern
55
+
56
+ ## Usage
57
+
58
+ ```python
59
+ from transformers import AutoModelForCausalLM, AutoTokenizer
60
+
61
+ model_id = 'Johnyquest7/Thyroid_EfficientNetV2'
62
+ tokenizer = AutoTokenizer.from_pretrained(model_id)
63
+ model = AutoModelForCausalLM.from_pretrained(model_id)
64
+ ```
65
+
66
+ For non-causal architectures, replace `AutoModelForCausalLM` with the appropriate `AutoModel` class.