Shoriful025 commited on
Commit
dd46123
·
verified ·
1 Parent(s): 3c2d110

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +23 -0
config.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "ResNetForImageClassification"
4
+ ],
5
+ "depth": 50,
6
+ "num_channels": 3,
7
+ "num_labels": 3,
8
+ "id2label": {
9
+ "0": "NORMAL",
10
+ "1": "PNEUMONIA_BACTERIAL",
11
+ "2": "PNEUMONIA_VIRAL"
12
+ },
13
+ "label2id": {
14
+ "NORMAL": 0,
15
+ "PNEUMONIA_BACTERIAL": 1,
16
+ "PNEUMONIA_VIRAL": 2
17
+ },
18
+ "image_size": 224,
19
+ "hidden_sizes": [256, 512, 1024, 2048],
20
+ "model_type": "resnet",
21
+ "torch_dtype": "float32",
22
+ "transformers_version": "4.37.0"
23
+ }