forked from TUMFTM/CameraRadarFusionNet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.cfg
89 lines (69 loc) · 1.42 KB
/
default.cfg
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
84
85
86
87
88
89
; config.ini
[PATH]
save_model = ./saved_models/
load_model =
[DATA]
data_set = nuscenes
data_path = /data/nuscenes
save_val_img_path =
n_sweeps = 13
radar_projection_height = 3
noise_filter_model =
noise_filter_cfg =
noise_filter_threshold =
noise_filter_perfect = False
radar_filter_dist =
scene_selection = default
[TENSORBOARD]
tensorboard = True
logdir = ./tb_logs/
histogram = False
[COMPUTING]
seed = 0
gpu = 0
gpu_mem_usage =
workers = 6
[PREPROCESSING]
normalize_radar = False
random_transform = False
sample_selection = False
only_radar_annotated = 0
noise_factor = 0.0
noisy_image_method =
[HYPERPARAMETERS]
learning_rate = 2e-5
batchsize = 1
epochs = 20
weighted_map = True
[CATEGORY_MAPPING]
vehicle.car = vehicle.car
vehicle.motorcycle = vehicle.motorcycle
vehicle.bicycle = vehicle.bicycle
vehicle.bus = vehicle.bus
vehicle.truck = vehicle.truck
vehicle.emergency = vehicle.truck
vehicle.trailer = vehicle.trailer
human = human
[CLASS_WEIGHTS]
vehicle.car = 1
vehicle.motorcycle = 39
vehicle.bicycle = 42
vehicle.bus.rigid = 30
vehicle.truck = 6
vehicle.trailer = 20
human.pedestrian.adult = 2
[CRF-Net]
channels = [0,1,2,5,18]
image_height = 360
image_width = 640
dropout_radar = 0.0
dropout_image = 0.2
network = vgg-max-fpn
network_width = 1.0
pooling = max
anchor_params = small
pretrain_basenet = True
distance_detection = False
distance_alpha = 10.0
class_specific_nms = False
score_thresh_train = 0.05