mertincesu commited on
Commit
c6572b8
·
verified ·
1 Parent(s): aa06b3a

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +20 -0
config.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_type": "mobilenet_v2",
3
+ "hidden_act": "relu6",
4
+ "hidden_size": 1280,
5
+ "image_size": 160,
6
+ "initializer_range": 0.02,
7
+ "num_channels": 3,
8
+ "num_classes": 2,
9
+ "id2label": {
10
+ "0": "indoor",
11
+ "1": "outdoor"
12
+ },
13
+ "label2id": {
14
+ "indoor": 0,
15
+ "outdoor": 1
16
+ },
17
+ "architectures": [
18
+ "MobileNetV2ForImageClassification"
19
+ ]
20
+ }