lpiccinelli commited on
Commit
bee5301
·
verified ·
1 Parent(s): 92041e1

Push model using huggingface_hub.

Browse files
Files changed (3) hide show
  1. README.md +11 -0
  2. config.json +188 -0
  3. model.safetensors +3 -0
README.md ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: UniDepth
3
+ tags:
4
+ - model_hub_mixin
5
+ - monocular-metric-depth-estimation
6
+ - pytorch_model_hub_mixin
7
+ ---
8
+
9
+ This model has been pushed to the Hub using the [PytorchModelHubMixin](https://huggingface.co/docs/huggingface_hub/package_reference/mixins#huggingface_hub.PyTorchModelHubMixin) integration:
10
+ - Library: https://github.com/lpiccinelli-eth/UniDepth
11
+ - Docs: [More Information Needed]
config.json ADDED
@@ -0,0 +1,188 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "data": {
3
+ "augmentations": {
4
+ "blur_p": 0.2,
5
+ "flip_p": 0.5,
6
+ "gamma_p": 0.8,
7
+ "grayscale_p": 0.2,
8
+ "jitter_p": 0.8,
9
+ "random_blur": 2.0,
10
+ "random_gamma": 0.2,
11
+ "random_jitter": 0.4,
12
+ "random_scale": 2.0,
13
+ "shape_constraints": {
14
+ "height_min": 15,
15
+ "pixels_max": 200000,
16
+ "pixels_min": 600000,
17
+ "ratio_bounds": [
18
+ 0.5,
19
+ 2.5
20
+ ],
21
+ "sample": true,
22
+ "shape_mult": 14,
23
+ "width_min": 15
24
+ },
25
+ "test_context": 1.0
26
+ },
27
+ "crop": "garg",
28
+ "data_root": "datasets",
29
+ "image_shape": [
30
+ 480,
31
+ 640
32
+ ],
33
+ "normalization": "imagenet",
34
+ "num_copies": 2,
35
+ "num_frames": 1,
36
+ "sampling": {
37
+ "ETH3D": 1.0,
38
+ "Waymo": 1.0
39
+ },
40
+ "train_datasets": [
41
+ "ETH3D",
42
+ "Waymo"
43
+ ],
44
+ "val_datasets": [
45
+ "IBims"
46
+ ]
47
+ },
48
+ "eps": 1e-06,
49
+ "generic": {
50
+ "deterministic": true,
51
+ "seed": 13
52
+ },
53
+ "model": {
54
+ "expansion": 4,
55
+ "layer_scale": 1.0,
56
+ "name": "UniDepthV2",
57
+ "num_heads": 8,
58
+ "pixel_decoder": {
59
+ "depths": [
60
+ 2,
61
+ 2,
62
+ 2
63
+ ],
64
+ "dropout": 0.0,
65
+ "hidden_dim": 384,
66
+ "kernel_size": 3,
67
+ "name": "Decoder",
68
+ "out_dim": 48
69
+ },
70
+ "pixel_encoder": {
71
+ "cls_token_embed_dims": [
72
+ 768,
73
+ 768,
74
+ 768,
75
+ 768,
76
+ 768,
77
+ 768,
78
+ 768,
79
+ 768,
80
+ 768,
81
+ 768,
82
+ 768,
83
+ 768
84
+ ],
85
+ "depths": [
86
+ 3,
87
+ 6,
88
+ 9,
89
+ 12
90
+ ],
91
+ "embed_dim": 768,
92
+ "embed_dims": [
93
+ 768,
94
+ 768,
95
+ 768,
96
+ 768,
97
+ 768,
98
+ 768,
99
+ 768,
100
+ 768,
101
+ 768,
102
+ 768,
103
+ 768,
104
+ 768
105
+ ],
106
+ "freeze_norm": true,
107
+ "frozen_stages": 0,
108
+ "lr": 2e-06,
109
+ "name": "dinov2_vitb14",
110
+ "num_register_tokens": 0,
111
+ "output_idx": [
112
+ 3,
113
+ 6,
114
+ 9,
115
+ 12
116
+ ],
117
+ "patch_size": 14,
118
+ "pretrained": null,
119
+ "stacking_fn": "last",
120
+ "use_norm": true,
121
+ "wd": 0.1
122
+ }
123
+ },
124
+ "training": {
125
+ "batch_size": 8,
126
+ "clipping": 1.0,
127
+ "cycle_beta": false,
128
+ "drop_path": 0.0,
129
+ "ema": true,
130
+ "f16": true,
131
+ "ld": 1.0,
132
+ "losses": {
133
+ "camera": {
134
+ "alpha": 1.0,
135
+ "fn": "l2",
136
+ "gamma": 1.0,
137
+ "input_fn": "linear",
138
+ "name": "Regression",
139
+ "output_fn": "sqrt",
140
+ "weight": 0.25
141
+ },
142
+ "confidence": {
143
+ "alpha": 1.0,
144
+ "fn": "l1",
145
+ "gamma": 1.0,
146
+ "input_fn": "linear",
147
+ "name": "Regression",
148
+ "output_fn": "sqrt",
149
+ "weight": 0.1
150
+ },
151
+ "depth": {
152
+ "dims": [
153
+ -2,
154
+ -1
155
+ ],
156
+ "input_fn": "log",
157
+ "integrated": 0.15,
158
+ "name": "SILog",
159
+ "output_fn": "sqrt",
160
+ "weight": 1.0
161
+ },
162
+ "invariance": {
163
+ "name": "SelfDistill",
164
+ "output_fn": "sqrt",
165
+ "weight": 0.1
166
+ },
167
+ "ssi": {
168
+ "input_fn": "log1i",
169
+ "min_samples": 6,
170
+ "name": "EdgeGuidedLocalSSI",
171
+ "output_fn": "sqrt",
172
+ "use_global": true,
173
+ "weight": 1.0
174
+ }
175
+ },
176
+ "lr": 0.0001,
177
+ "lr_final": 1e-06,
178
+ "lr_warmup": 1.0,
179
+ "n_iters": 300000,
180
+ "nsteps_accumulation_gradient": 2,
181
+ "pretrained": "/srv/beegfs02/scratch/3d_tracking/data/pami2025_unidepth/checkpoints/unidepth-v2-vitb14.pt",
182
+ "use_checkpoint": false,
183
+ "validation_interval": 2,
184
+ "warmup_iters": 75000,
185
+ "wd": 0.1,
186
+ "wd_final": 0.1
187
+ }
188
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:871289bd6464fc1a8088fcd2a9bbe39f7746aa40cfa562c608f8e928bf053597
3
+ size 457726148