forked from LMD0311/PointMamba
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pretrain.yaml
48 lines (44 loc) · 973 Bytes
/
pretrain.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
optimizer : {
type: AdamW,
kwargs: {
lr : 0.001,
weight_decay : 0.05
}}
scheduler: {
type: CosLR,
kwargs: {
epochs: 300,
initial_epochs : 10
}}
dataset : {
train : { _base_: cfgs/dataset_configs/ShapeNet-55.yaml,
others: {subset: 'train', npoints: 1024}},
val : { _base_: cfgs/dataset_configs/ShapeNet-55.yaml,
others: {subset: 'test', npoints: 1024}},
test : { _base_: cfgs/dataset_configs/ShapeNet-55.yaml,
others: {subset: 'test', npoints: 1024}}}
model : {
NAME: Point_MAE_Mamba,
group_size: 32,
num_group: 64,
loss: cdl2,
transformer_config: {
mask_ratio: 0.6,
mask_type: 'rand',
trans_dim: 384,
encoder_dims: 384,
depth: 12,
drop_path_rate: 0.1,
num_heads: 6,
decoder_depth: 4,
decoder_num_heads: 6,
},
rms_norm: False,
use_cls_token: False,
drop_path: 0.1,
drop_out: 0.1,
}
npoints: 1024
total_bs : 128
step_per_update : 1
max_epoch : 300