-
Notifications
You must be signed in to change notification settings - Fork 7
/
scanobjectnn.yaml
56 lines (55 loc) · 1.38 KB
/
scanobjectnn.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
50
51
52
53
54
55
56
# pytorch_lightning==1.7.2
seed_everything: 0
trainer:
sync_batchnorm: true
# gradient_clip_val: null
# gradient_clip_algorithm: null
max_epochs: 150
precision: 16
model:
num_points: 2048
tokenizer_num_groups: 128
tokenizer_group_size: 32
tokenizer_group_radius: null # 0.075 works best
encoder_dim: 384
encoder_depth: 12
encoder_heads: 6
encoder_dropout: 0.0
encoder_attention_dropout: 0.0
encoder_drop_path_rate: 0.2
encoder_add_pos_at_every_layer: true
cls_head: mlp
cls_head_dim: 256
cls_head_dropout: 0.5
cls_head_pooling: mean+max
loss_label_smoothing: 0.2
learning_rate: 0.001
optimizer_adamw_weight_decay: 0.05
lr_scheduler_linear_warmup_epochs: 10
lr_scheduler_linear_warmup_start_lr: 1.0e-06
lr_scheduler_cosine_eta_min: 1.0e-06
pretrained_ckpt_path: null
train_transformations:
- scale
- center
- unit_sphere
- rotate
val_transformations:
- center
- unit_sphere
transformation_scale_min: 0.9
transformation_scale_max: 1.1
transformation_scale_symmetries: [1, 0, 1]
transformation_rotate_dims: [1]
transformation_rotate_degs: null
transformation_translate: 0.2
transformation_height_normalize_dim: 1
log_tsne: false
log_confusion_matrix: false
data:
class_path: point2vec.datasets.ScanObjectNNDataModule
init_args:
data_dir: ./data/ScanObjectNN
split: main_split
perturbed: true
batch_size: 32