-
Notifications
You must be signed in to change notification settings - Fork 39
/
config.json
70 lines (65 loc) · 1.78 KB
/
config.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
{
"DATA" :
{
"train_set_dir": "/media/ao/Aooooo/RADDet_DATASET/train",
"test_set_dir": "/media/ao/Aooooo/RADDet_DATASET/test",
"all_classes" : ["person", "bicycle", "car", "motorcycle", "bus", "truck" ],
"global_mean_log" : 3.2438383,
"global_max_log" : 10.0805629,
"global_min_log" : 0.0,
"global_variance_log" : 6.8367246,
"max_boxes_per_frame" : 30,
"trainset_portion" : 0.8
},
"MODEL" :
{
"yolohead_xyz_scales" : [1, 1, 1],
"input_shape" : [256, 256, 64],
"confidence_threshold" : 0.5,
"nms_iou3d_threshold": 0.1,
"mAP_iou3d_threshold": 0.3
},
"TRAIN" :
{
"if_validate": true,
"epochs" : 1000,
"batch_size" : 3,
"focal_loss_iou_threshold" : 0.3,
"log_dir": "./logs/RadarResNet",
"learningrate_init": 0.0001,
"learningrate_end": 0.00001,
"learningrate_decay": 0.96,
"learningrate_decay_gap": 3000,
"startup_steps": 1000,
"learningrate_startup": 0.0001,
"warmup_steps": 60000,
"validate_start_steps": 10000,
"validate_gap": 10000
},
"EVALUATE" :
{
"log_dir": "./logs/RadarResNet",
"confidence_threshold" : 0.5,
"nms_iou3d_threshold": 0.1,
"mAP_iou3d_threshold": [0.1, 0.3, 0.5, 0.7]
},
"INFERENCE" :
{
"log_dir": "./logs/RadarResNet",
"RAD_inputdir": "/media/ao/Aooooo/Radar_Inference_Data/test_4/RAD",
"image_inputdir": "/media/ao/Aooooo/Radar_Inference_Data/test_4/images",
"confidence_threshold" : 0.5,
"nms_iou3d_threshold": 0.01
},
"RADAR_CONFIGURATION" :
{
"designed_frequency" : 76.8,
"config_frequency" : 77,
"range_size" : 256,
"doppler_size" : 64,
"azimuth_size" : 256,
"range_resolution" : 0.1953125,
"angular_resolution" : 0.006135923,
"velocity_resolution" : 0.41968030701528203
}
}