Commit ·
aed0df7
1
Parent(s): 49d0bc9
upload config.json file
Browse files- config.json +23 -0
config.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_name_or_path": "Baldezo313/cnn_resnet50_model",
|
| 3 |
+
"architectures": [
|
| 4 |
+
"ResNetForImageClassification"
|
| 5 |
+
],
|
| 6 |
+
"encoder_stride": 16,
|
| 7 |
+
"hidden_act": "relu",
|
| 8 |
+
"id2label": {
|
| 9 |
+
"0": "No Lung Opacity / Not Normal",
|
| 10 |
+
"1": "Lung Opacity",
|
| 11 |
+
"2": "Normal"
|
| 12 |
+
},
|
| 13 |
+
"image_size": 128,
|
| 14 |
+
"label2id": {
|
| 15 |
+
"No Lung Opacity / Not Normal": 0,
|
| 16 |
+
"Lung Opacity": 1,
|
| 17 |
+
"Normal": 2
|
| 18 |
+
},
|
| 19 |
+
"model_type": "resnet",
|
| 20 |
+
"num_channels": 3,
|
| 21 |
+
"torch_dtype": "float32",
|
| 22 |
+
"transformers_version": "4.24.0"
|
| 23 |
+
}
|