-
Notifications
You must be signed in to change notification settings - Fork 29
/
run_1050.yaml
44 lines (39 loc) · 918 Bytes
/
run_1050.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
random_seed: 222
dataset:
type: 'waymo'
root_dir: 'data/'
train_split_name: 'train'
val_split_name: 'val'
resolution: [ 768, 512 ]
batch_size: 40
class_merging: False
use_dontcare: False
use_3d_center: True
writelist: ['Car','Pedestrian','Cyclist']
random_flip: 0.5
random_crop: 0.5
scale: 0.4
shift: 0.1
model:
type: 'gupnet'
backbone: 'dla34'
neck: 'DLAUp'
optimizer:
type: 'adam'
lr: 0.00125
weight_decay: 0.00001
lr_scheduler:
warmup: True # 5 epoches, cosine warmup, init_lir=0.00001 in default
decay_rate: 0.1
decay_list: [18, 26]
trainer:
max_epoch: 30
eval_frequency: 10 # evaluation interval (in epoch)
save_frequency: 10 # checkpoint save interval (in epoch)
disp_frequency: 50 # display interval (in batch)
log_dir: 'output/'
#resume_model: '...'
tester:
threshold: 0.1 # confidence filter
#resume_model: ''
tester_metrics: 'waymo'