IMvision12 commited on
Commit
f1c3f0a
·
verified ·
1 Parent(s): 1b4273a

Upgrade kf_config.json to v2 (nested config + dtype)

Browse files
Files changed (1) hide show
  1. kf_config.json +30 -26
kf_config.json CHANGED
@@ -1,34 +1,38 @@
1
  {
2
  "library_name": "kerasformers",
3
- "kerasformers_version": "1.1.3",
4
  "model_module": "kerasformers.models.depth_anything_v2",
5
  "model_class": "DepthAnythingV2DepthEstimation",
6
  "variant": "depth_anything_v2_base",
7
  "weights": "model.weights.h5",
 
 
8
  "model_type": "depth_anything",
9
- "backbone_dim": 768,
10
- "backbone_depth": 12,
11
- "backbone_num_heads": 12,
12
- "out_indices": [
13
- 3,
14
- 6,
15
- 9,
16
- 12
17
- ],
18
- "neck_hidden_sizes": [
19
- 96,
20
- 192,
21
- 384,
22
- 768
23
- ],
24
- "fusion_hidden_size": 128,
25
- "reassemble_factors": [
26
- 4,
27
- 2,
28
- 1,
29
- 0.5
30
- ],
31
- "depth_estimation_type": "relative",
32
- "max_depth": 1.0,
33
- "image_size": 518
 
 
34
  }
 
1
  {
2
  "library_name": "kerasformers",
3
+ "kerasformers_version": "1.2.1",
4
  "model_module": "kerasformers.models.depth_anything_v2",
5
  "model_class": "DepthAnythingV2DepthEstimation",
6
  "variant": "depth_anything_v2_base",
7
  "weights": "model.weights.h5",
8
+ "schema_version": 2,
9
+ "dtype": "float32",
10
  "model_type": "depth_anything",
11
+ "vision_config": {
12
+ "backbone_dim": 768,
13
+ "backbone_depth": 12,
14
+ "backbone_num_heads": 12,
15
+ "out_indices": [
16
+ 3,
17
+ 6,
18
+ 9,
19
+ 12
20
+ ],
21
+ "neck_hidden_sizes": [
22
+ 96,
23
+ 192,
24
+ 384,
25
+ 768
26
+ ],
27
+ "fusion_hidden_size": 128,
28
+ "reassemble_factors": [
29
+ 4,
30
+ 2,
31
+ 1,
32
+ 0.5
33
+ ],
34
+ "depth_estimation_type": "relative",
35
+ "max_depth": 1.0,
36
+ "image_size": 518
37
+ }
38
  }