Luwayy commited on
Commit
2ffd2b1
·
1 Parent(s): aa59abb

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +59 -0
config.json ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_type": "resnet",
3
+ "model": "ResNet50",
4
+ "weights": "kaggle/working/disaster_model",
5
+ "license": "mit",
6
+ "language": "en",
7
+ "metrics": {
8
+ "main": "accuracy"
9
+ },
10
+ "pipeline_tag": "image-classification",
11
+ "classes": [
12
+ {
13
+ "id": 0,
14
+ "name": "Damaged_Infrastructure",
15
+ "height": 256,
16
+ "width": 256,
17
+ "scale_by": 1
18
+ },
19
+ {
20
+ "id": 1,
21
+ "name": "Fire_Disaster",
22
+ "height": 256,
23
+ "width": 256,
24
+ "scale_by": 1
25
+ },
26
+ {
27
+ "id": 2,
28
+ "name": "Human_Damage",
29
+ "height": 256,
30
+ "width": 256,
31
+ "scale_by": 1
32
+ },
33
+ {
34
+ "id": 3,
35
+ "name": "Land_Disaster",
36
+ "height": 256,
37
+ "width": 256,
38
+ "scale_by": 1
39
+ },
40
+ {
41
+ "id": 4,
42
+ "name": "Non_Damage",
43
+ "height": 256,
44
+ "width": 256,
45
+ "scale_by": 1
46
+ },
47
+ {
48
+ "id": 5,
49
+ "name": "Water_Disaster",
50
+ "height": 256,
51
+ "width": 256,
52
+ "scale_by": 1
53
+ }
54
+ ],
55
+ "preprocessing": {
56
+ "resize": [256, 256],
57
+ "scale": 255
58
+ }
59
+ }