-
Notifications
You must be signed in to change notification settings - Fork 132
Expand file tree
/
Copy pathkitti360.yaml
More file actions
52 lines (38 loc) · 1.08 KB
/
kitti360.yaml
File metadata and controls
52 lines (38 loc) · 1.08 KB
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
# @package _global_
# to execute this experiment run:
# python train.py experiment=panoptic/kitti360
defaults:
- override /datamodule: panoptic/kitti360.yaml
- override /model: panoptic/spt-2.yaml
- override /trainer: gpu.yaml
# all parameters below will be merged with parameters from default configurations set above
# this allows you to overwrite only specified parameters
trainer:
max_epochs: 200
model:
optimizer:
lr: 0.01
weight_decay: 1e-4
_down_dim: [ 128, 128, 128, 128 ]
_up_dim: [ 128, 128, 128 ]
net:
no_ffn: False
down_ffn_ratio: 1
partitioner:
regularization: 10
x_weight: 5e-2
cutoff: 1
partition_every_n_epoch: 10
logger:
wandb:
project: "spt_kitti360"
name: "SPT-128"
# metric based on which models will be selected
optimized_metric: "val/pq"
# modify checkpointing callbacks to adapt to partition_every_n_epoch
# being potentially different
callbacks:
model_checkpoint:
every_n_epochs: ${eval:'max(${trainer.check_val_every_n_epoch}, ${model.partition_every_n_epoch})'}
early_stopping:
strict: False