Johnyquest7 commited on
Commit
cd6f0c7
·
verified ·
1 Parent(s): 1393c62

Upload thyroid_metrics.json

Browse files
Files changed (1) hide show
  1. thyroid_metrics.json +47 -0
thyroid_metrics.json ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model": "Johnyquest7/ML-Inter_thyroid",
3
+ "architecture": "microsoft/swinv2-base-patch4-window8-256",
4
+ "parameters": "86.9M",
5
+ "evaluation_date": "2026-05-05",
6
+ "dataset": "BTX24/thyroid-cancer-classification-ultrasound-dataset",
7
+ "test_split": "stratified 20% hold-out (499 samples)",
8
+ "class_mapping": {"0": "benign", "1": "malignant"},
9
+
10
+ "confusion_matrix": {
11
+ "predicted_benign": {"true_benign": 304, "true_malignant": 12},
12
+ "predicted_malignant": {"true_benign": 6, "true_malignant": 177}
13
+ },
14
+
15
+ "metrics": {
16
+ "accuracy": 0.9639,
17
+ "auc_roc": 0.9871,
18
+ "sensitivity": 0.9365,
19
+ "specificity": 0.9806,
20
+ "ppv": 0.9672,
21
+ "npv": 0.9620,
22
+ "f1_weighted": 0.9638,
23
+ "f1_macro": 0.9636,
24
+ "precision_weighted": 0.9640,
25
+ "recall_weighted": 0.9639,
26
+ "precision_macro": 0.9643,
27
+ "recall_macro": 0.9586
28
+ },
29
+
30
+ "per_class": {
31
+ "benign": {"precision": 0.9620, "recall": 0.9806, "f1": 0.9712},
32
+ "malignant": {"precision": 0.9672, "recall": 0.9365, "f1": 0.9516}
33
+ },
34
+
35
+ "n_samples": {
36
+ "total": 499,
37
+ "benign": 310,
38
+ "malignant": 189
39
+ },
40
+
41
+ "clinical_interpretation": {
42
+ "sensitivity_93.7%": "Of 189 malignant nodules, 177 were correctly identified (12 false negatives)",
43
+ "specificity_98.1%": "Of 310 benign nodules, 304 were correctly identified (6 false positives)",
44
+ "ppv_96.7%": "Of 183 nodules flagged as malignant, 177 were actually malignant",
45
+ "npv_96.2%": "Of 316 nodules flagged as benign, 304 were actually benign"
46
+ }
47
+ }