Shoriful025 commited on
Commit
367ab27
·
verified ·
1 Parent(s): 2178011

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +26 -0
config.json ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "ViTForImageClassification"
4
+ ],
5
+ "hidden_act": "gelu",
6
+ "hidden_dropout_prob": 0.0,
7
+ "hidden_size": 768,
8
+ "image_size": 224,
9
+ "initializer_range": 0.02,
10
+ "intermediate_size": 3072,
11
+ "layer_norm_eps": 1e-12,
12
+ "model_type": "vit",
13
+ "num_attention_heads": 12,
14
+ "num_channels": 3,
15
+ "num_hidden_layers": 12,
16
+ "patch_size": 16,
17
+ "qkv_bias": true,
18
+ "torch_dtype": "float32",
19
+ "transformers_version": "4.36.0",
20
+ "id2label": {
21
+ "0": "Obstacle",
22
+ "1": "Clear_Path",
23
+ "2": "Landing_Zone",
24
+ "3": "Restricted_Airspace"
25
+ }
26
+ }