Update config.json
Browse files- config.json +23 -15
config.json
CHANGED
@@ -1,20 +1,35 @@
|
|
1 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
"weights_url": "https://github.com/mlmed/torchxrayvision/releases/download/v1/chex-densenet121-d121-tw-lr001-rot45-tr15-sc15-seed0-best.pt",
|
3 |
"labels": [
|
4 |
"Atelectasis",
|
5 |
"Consolidation",
|
6 |
-
"",
|
7 |
"Pneumothorax",
|
8 |
"Edema",
|
9 |
-
"",
|
10 |
-
"",
|
11 |
"Effusion",
|
12 |
"Pneumonia",
|
13 |
-
"",
|
14 |
"Cardiomegaly",
|
15 |
-
"",
|
16 |
-
"",
|
17 |
-
"",
|
18 |
"Lung Lesion",
|
19 |
"Fracture",
|
20 |
"Lung Opacity",
|
@@ -23,21 +38,14 @@
|
|
23 |
"op_threshs": [
|
24 |
0.1988969,
|
25 |
0.05710573,
|
26 |
-
NaN,
|
27 |
0.0531293,
|
28 |
0.1435217,
|
29 |
-
NaN,
|
30 |
-
NaN,
|
31 |
0.27212676,
|
32 |
0.07749717,
|
33 |
-
NaN,
|
34 |
0.19712369,
|
35 |
-
NaN,
|
36 |
-
NaN,
|
37 |
-
NaN,
|
38 |
0.09932402,
|
39 |
0.09273402,
|
40 |
0.3270967,
|
41 |
0.10888247
|
42 |
]
|
43 |
-
}
|
|
|
1 |
{
|
2 |
+
"model_type": "densenet",
|
3 |
+
"architectures": [
|
4 |
+
"DenseNetForImageClassification"
|
5 |
+
],
|
6 |
+
"pipeline_tag": "image-classification",
|
7 |
+
"transformers_version": "4.30.0",
|
8 |
+
"image_size": [
|
9 |
+
224,
|
10 |
+
224
|
11 |
+
],
|
12 |
+
"normalize": {
|
13 |
+
"mean": [
|
14 |
+
0.485,
|
15 |
+
0.456,
|
16 |
+
0.406
|
17 |
+
],
|
18 |
+
"std": [
|
19 |
+
0.229,
|
20 |
+
0.224,
|
21 |
+
0.225
|
22 |
+
]
|
23 |
+
},
|
24 |
"weights_url": "https://github.com/mlmed/torchxrayvision/releases/download/v1/chex-densenet121-d121-tw-lr001-rot45-tr15-sc15-seed0-best.pt",
|
25 |
"labels": [
|
26 |
"Atelectasis",
|
27 |
"Consolidation",
|
|
|
28 |
"Pneumothorax",
|
29 |
"Edema",
|
|
|
|
|
30 |
"Effusion",
|
31 |
"Pneumonia",
|
|
|
32 |
"Cardiomegaly",
|
|
|
|
|
|
|
33 |
"Lung Lesion",
|
34 |
"Fracture",
|
35 |
"Lung Opacity",
|
|
|
38 |
"op_threshs": [
|
39 |
0.1988969,
|
40 |
0.05710573,
|
|
|
41 |
0.0531293,
|
42 |
0.1435217,
|
|
|
|
|
43 |
0.27212676,
|
44 |
0.07749717,
|
|
|
45 |
0.19712369,
|
|
|
|
|
|
|
46 |
0.09932402,
|
47 |
0.09273402,
|
48 |
0.3270967,
|
49 |
0.10888247
|
50 |
]
|
51 |
+
}
|