Johnyquest7 commited on
Commit
9c0b700
·
verified ·
1 Parent(s): 85f3cc5

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 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.