-
Notifications
You must be signed in to change notification settings - Fork 20
/
pretrain.yaml
49 lines (45 loc) · 1 KB
/
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
49
optimizer: { type: AdamW, kwargs: { lr: 0.0001, 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: PointGPT,
cls_dim: 40,
group_size: 32,
num_group: 64,
loss: cdl12,
weight_center: 1,
transformer_config:
{
mask_ratio: 0.7,
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,
},
}
npoints: 1024
total_bs: 64
step_per_update: 1
max_epoch: 300