hf-transformers-bot commited on
Commit
e69edd0
·
verified ·
1 Parent(s): 6457e81

Update tiny models for GLPNForDepthEstimation

Browse files
Files changed (3) hide show
  1. config.json +62 -0
  2. model.safetensors +3 -0
  3. preprocessor_config.json +16 -0
config.json ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "GLPNForDepthEstimation"
4
+ ],
5
+ "attention_probs_dropout_prob": 0.1,
6
+ "decoder_hidden_size": 16,
7
+ "depths": [
8
+ 2,
9
+ 2,
10
+ 2,
11
+ 2
12
+ ],
13
+ "drop_path_rate": 0.1,
14
+ "dtype": "float32",
15
+ "head_in_index": -1,
16
+ "hidden_act": "gelu",
17
+ "hidden_dropout_prob": 0.1,
18
+ "hidden_sizes": [
19
+ 16,
20
+ 32,
21
+ 64,
22
+ 128
23
+ ],
24
+ "image_size": 64,
25
+ "initializer_range": 0.02,
26
+ "layer_norm_eps": 1e-06,
27
+ "max_depth": 10,
28
+ "mlp_ratios": [
29
+ 4,
30
+ 4,
31
+ 4,
32
+ 4
33
+ ],
34
+ "model_type": "glpn",
35
+ "num_attention_heads": [
36
+ 1,
37
+ 2,
38
+ 4,
39
+ 8
40
+ ],
41
+ "num_channels": 3,
42
+ "num_encoder_blocks": 4,
43
+ "patch_sizes": [
44
+ 7,
45
+ 3,
46
+ 3,
47
+ 3
48
+ ],
49
+ "sr_ratios": [
50
+ 8,
51
+ 4,
52
+ 2,
53
+ 1
54
+ ],
55
+ "strides": [
56
+ 4,
57
+ 2,
58
+ 2,
59
+ 2
60
+ ],
61
+ "transformers_version": "5.16.0.dev0"
62
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7707e95bf438c35389f008ffbdd4bb55bcd8f3bb62bd4f2bcb4b3e7d0937da9f
3
+ size 3112316
preprocessor_config.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "crop_size": {
3
+ "height": 64,
4
+ "width": 64
5
+ },
6
+ "do_rescale": true,
7
+ "do_resize": true,
8
+ "image_processor_type": "GLPNImageProcessor",
9
+ "resample": 2,
10
+ "rescale_factor": 0.00392156862745098,
11
+ "size": {
12
+ "height": 64,
13
+ "width": 64
14
+ },
15
+ "size_divisor": 32
16
+ }