Upload folder using huggingface_hub
Browse files- depth.yaml +46 -0
- mast3r.yaml +28 -0
- segmentation.yaml +54 -0
depth.yaml
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
base_checkpoint: "./checkpoints/dune_vitbase14_448_paper.pth"
|
| 2 |
+
realm_checkpoint: "./checkpoints/REALM_final_rank32_0955116.pth"
|
| 3 |
+
embedding:
|
| 4 |
+
num_bins: 5
|
| 5 |
+
patch_grid: 32
|
| 6 |
+
embed_dim: 768
|
| 7 |
+
base_channels: 64
|
| 8 |
+
num_downsample: 3
|
| 9 |
+
norm: batch
|
| 10 |
+
use_residual: True
|
| 11 |
+
pretrained_head: "./checkpoints/heads/depth.pth"
|
| 12 |
+
head:
|
| 13 |
+
type: depth
|
| 14 |
+
embed_dim: 768
|
| 15 |
+
min_depth: 1.95
|
| 16 |
+
max_depth: 82.0
|
| 17 |
+
num_bins: 256
|
| 18 |
+
|
| 19 |
+
data:
|
| 20 |
+
batch_size: 32
|
| 21 |
+
|
| 22 |
+
datasets_config:
|
| 23 |
+
datasets:
|
| 24 |
+
- MVSEC
|
| 25 |
+
|
| 26 |
+
common:
|
| 27 |
+
events_representation: voxel_grid
|
| 28 |
+
nr_bins_per_data: 5
|
| 29 |
+
normalize_event: true
|
| 30 |
+
sequence_length: 1
|
| 31 |
+
target_size: [346, 260]
|
| 32 |
+
|
| 33 |
+
MVSEC:
|
| 34 |
+
root: ./datasets/MVSEC
|
| 35 |
+
n_ev: 150000
|
| 36 |
+
ms_ev: -1
|
| 37 |
+
stride: 1
|
| 38 |
+
mask: true
|
| 39 |
+
skip_init_frames: 1
|
| 40 |
+
depth: true
|
| 41 |
+
min_n_ev: 5000
|
| 42 |
+
transforms:
|
| 43 |
+
- type: resize
|
| 44 |
+
params:
|
| 45 |
+
target_size: [260, 346]
|
| 46 |
+
keep_aspect_ratio: true
|
mast3r.yaml
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
base_checkpoint: "./checkpoints/dune_vitbase14_448_paper.pth"
|
| 2 |
+
dune_checkpoint: "./checkpoints/dune_vitbase14_448_paper.pth"
|
| 3 |
+
realm_checkpoint: "./checkpoints/REALM_final_rank32_0955116.pth"
|
| 4 |
+
embedding:
|
| 5 |
+
num_bins: 5
|
| 6 |
+
patch_grid: 32
|
| 7 |
+
embed_dim: 768
|
| 8 |
+
base_channels: 64
|
| 9 |
+
num_downsample: 3
|
| 10 |
+
norm: "batch"
|
| 11 |
+
use_residual: True
|
| 12 |
+
pretrained_head: "./checkpoints/heads/mast3r_decoder.pth"
|
| 13 |
+
head:
|
| 14 |
+
type: "mast3r"
|
| 15 |
+
enc_embed_dim: 768
|
| 16 |
+
dec_embed_dim: 768
|
| 17 |
+
dec_depth: 12
|
| 18 |
+
dec_num_heads: 12
|
| 19 |
+
mlp_ratio: 4
|
| 20 |
+
patch_embed_size: 14
|
| 21 |
+
norm_im2_in_dec: True
|
| 22 |
+
output_mode: "pts3d+desc24"
|
| 23 |
+
head_type: "catmlp+dpt"
|
| 24 |
+
landscape_only: False
|
| 25 |
+
two_confs: True
|
| 26 |
+
|
| 27 |
+
data:
|
| 28 |
+
dataset_path: "./datasets/robot-fast"
|
segmentation.yaml
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
base_checkpoint: "./checkpoints/dune_vitbase14_448_paper.pth"
|
| 2 |
+
realm_checkpoint: "./checkpoints/REALM_final_rank32_0955116.pth"
|
| 3 |
+
embedding:
|
| 4 |
+
num_bins: 5
|
| 5 |
+
patch_grid: 32
|
| 6 |
+
embed_dim: 768
|
| 7 |
+
base_channels: 64
|
| 8 |
+
num_downsample: 3
|
| 9 |
+
norm: "batch"
|
| 10 |
+
use_residual: True
|
| 11 |
+
projector: 'dino2reg_vitlarge_14'
|
| 12 |
+
pretrained_head: "./checkpoints/heads/segmentation.pth"
|
| 13 |
+
head:
|
| 14 |
+
type: "segmentation"
|
| 15 |
+
in_channels: 1024
|
| 16 |
+
num_classes: 11
|
| 17 |
+
|
| 18 |
+
tiling:
|
| 19 |
+
input_height: 480
|
| 20 |
+
input_width: 640
|
| 21 |
+
tile_size: 448
|
| 22 |
+
|
| 23 |
+
data:
|
| 24 |
+
batch_size: 32
|
| 25 |
+
|
| 26 |
+
datasets_config:
|
| 27 |
+
datasets:
|
| 28 |
+
- DSEC
|
| 29 |
+
|
| 30 |
+
common:
|
| 31 |
+
events_representation: voxel_grid
|
| 32 |
+
nr_bins_per_data: 5
|
| 33 |
+
normalize_event: true
|
| 34 |
+
sequence_length: 1
|
| 35 |
+
target_size: [640, 480]
|
| 36 |
+
semseg_num_classes: 11
|
| 37 |
+
|
| 38 |
+
DSEC:
|
| 39 |
+
root: ./datasets/DSEC
|
| 40 |
+
n_ev: -1
|
| 41 |
+
ms_ev: 55
|
| 42 |
+
stride: 1
|
| 43 |
+
mask: false
|
| 44 |
+
segmentation: true
|
| 45 |
+
transforms:
|
| 46 |
+
- type: crop
|
| 47 |
+
params:
|
| 48 |
+
tl_corner: [0, 0]
|
| 49 |
+
br_corner: [640, 460]
|
| 50 |
+
|
| 51 |
+
- type: resize
|
| 52 |
+
params:
|
| 53 |
+
target_size: [480, 640]
|
| 54 |
+
keep_aspect_ratio: true
|