Update config.json

#2
by Vara971 - opened
Files changed (1) hide show
  1. config.json +25 -12
config.json CHANGED
@@ -1,17 +1,30 @@
1
  {
2
- "num_classes": 1,
3
- "image_size": 640,
4
- "architectures": [
5
- "YolosForObjectDetection"
6
- ],
 
 
 
 
7
  "model_type": "yolos",
 
 
 
 
 
 
 
8
  "id2label": {
9
- "1": "roof",
10
- "0": "N/A"
11
- },
12
  "label2id": {
13
- "roof": 1,
14
- "N/A": 0
15
- }
16
-
 
 
17
  }
 
1
  {
2
+ "architectures": [
3
+ "YolosForObjectDetection"
4
+ ],
5
+ "attention_probs_dropout_prob": 0.1,
6
+ "hidden_dropout_prob": 0.1,
7
+ "hidden_size": 768,
8
+ "image_size": 640,
9
+ "initializer_range": 0.02,
10
+ "layer_norm_eps": 1e-12,
11
  "model_type": "yolos",
12
+ "num_attention_heads": 12,
13
+ "num_channels": 3,
14
+ "num_hidden_layers": 12,
15
+ "patch_size": 16,
16
+ "qkv_bias": true,
17
+ "encoder_stride": 16,
18
+ "num_classes": 2,
19
  "id2label": {
20
+ "0": "N/A",
21
+ "1": "roof"
22
+ },
23
  "label2id": {
24
+ "N/A": 0,
25
+ "roof": 1
26
+ },
27
+ "use_mid_position_embeddings": true,
28
+ "use_relative_position_bias": true,
29
+ "intermediate_size": 3072
30
  }