-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathdefault.json
83 lines (78 loc) · 1.91 KB
/
default.json
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "default",
"n_gpu": 1,
"graph_truncation_dist": 5.0,
"arch": {
"type": "STTransformerModel",
"args": {
"d_model": 128,
"nhead": 8,
"dropout": 0.1,
"encoder_nlayers": 1,
"decoder_nlayers": 3,
"norm_first": true,
"cross_attn_value_gate": false
}
},
"train_dataset": {
"type": "PatchwiseDataset",
"args": {
"data_dir": "$PKL_DATA_DIR",
"split": "training",
"sample_length": 6,
"dataset": "nuscenes",
"iou_matching": true,
"score_threshold": 0.0
}
},
"train_data_loader": {
"type": "BaseDataLoader",
"args": {
"batch_size": 8,
"shuffle": true,
"num_workers": 0,
"pin_memory": false
}
},
"val_dataset": {
"type": "SequentialDataset",
"args": {
"data_dir": "$PKL_DATA_DIR",
"split": "validation",
"dataset": "nuscenes",
"iou_matching": true,
"score_threshold": 0.0
}
},
"optimizer": {
"type": "AdamW",
"args": {
"lr": 0.001
}
},
"loss": {
"type": "Loss",
"args": {
"gamma": 1.0,
"normalize_by_positive": false,
"velo_loss_weight": 1.0
}
},
"trainer": {
"epochs": 12,
"save_dir": "./workspace/",
"nusc_path": "$NUSCENES_DIR",
"save_period": 1,
"verbosity": 2,
"log_step": 50,
"eval_interval": 1,
"active_track_thresh": 0.01,
"inter_graph_distance_thresh": 5.0,
"max_age": 3,
"learned_feature_update": false,
"feature_update_weight": 1.0,
"hungarian_matching": false,
"tensorboard": true,
"num_vis": 3
}
}