nus-3d.py 3.93 KB
Newer Older
zhangwenwei's avatar
zhangwenwei committed
1
2
# If point cloud range is changed, the models should also change their point
# cloud range accordingly
liyinhao's avatar
liyinhao committed
3
point_cloud_range = [-50, -50, -5, 50, 50, 3]
zhangwenwei's avatar
zhangwenwei committed
4
# For nuScenes we usually do 10-class detection
liyinhao's avatar
liyinhao committed
5
6
7
8
9
10
class_names = [
    'car', 'truck', 'trailer', 'bus', 'construction_vehicle', 'bicycle',
    'motorcycle', 'pedestrian', 'traffic_cone', 'barrier'
]
dataset_type = 'NuScenesDataset'
data_root = 'data/nuscenes/'
zhangwenwei's avatar
zhangwenwei committed
11
12
13
14
15
16
17
18
# Input modality for nuScenes dataset, this is consistent with the submission
# format which requires the information in input_modality.
input_modality = dict(
    use_lidar=True,
    use_camera=False,
    use_radar=False,
    use_map=False,
    use_external=False)
zhangwenwei's avatar
zhangwenwei committed
19
file_client_args = dict(backend='disk')
zhangwenwei's avatar
zhangwenwei committed
20
21
22
# Uncomment the following if use ceph or other file clients.
# See https://mmcv.readthedocs.io/en/latest/api.html#mmcv.fileio.FileClient
# for more details.
zhangwenwei's avatar
zhangwenwei committed
23
24
25
26
27
28
# file_client_args = dict(
#     backend='petrel',
#     path_mapping=dict({
#         './data/nuscenes/': 's3://nuscenes/nuscenes/',
#         'data/nuscenes/': 's3://nuscenes/nuscenes/'
#     }))
liyinhao's avatar
liyinhao committed
29
30
31
32
33
34
35
36
37
38
39
40
train_pipeline = [
    dict(
        type='LoadPointsFromFile',
        load_dim=5,
        use_dim=5,
        file_client_args=file_client_args),
    dict(
        type='LoadPointsFromMultiSweeps',
        sweeps_num=10,
        file_client_args=file_client_args),
    dict(type='LoadAnnotations3D', with_bbox_3d=True, with_label_3d=True),
    dict(
zhangwenwei's avatar
zhangwenwei committed
41
42
43
44
        type='GlobalRotScaleTrans',
        rot_range=[-0.3925, 0.3925],
        scale_ratio_range=[0.95, 1.05],
        translation_std=[0, 0, 0]),
wuyuefeng's avatar
wuyuefeng committed
45
    dict(type='RandomFlip3D', flip_ratio_bev_horizontal=0.5),
liyinhao's avatar
liyinhao committed
46
47
    dict(type='PointsRangeFilter', point_cloud_range=point_cloud_range),
    dict(type='ObjectRangeFilter', point_cloud_range=point_cloud_range),
zhangwenwei's avatar
zhangwenwei committed
48
    dict(type='ObjectNameFilter', classes=class_names),
liyinhao's avatar
liyinhao committed
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
    dict(type='PointShuffle'),
    dict(type='DefaultFormatBundle3D', class_names=class_names),
    dict(type='Collect3D', keys=['points', 'gt_bboxes_3d', 'gt_labels_3d'])
]
test_pipeline = [
    dict(
        type='LoadPointsFromFile',
        load_dim=5,
        use_dim=5,
        file_client_args=file_client_args),
    dict(
        type='LoadPointsFromMultiSweeps',
        sweeps_num=10,
        file_client_args=file_client_args),
    dict(
zhangwenwei's avatar
zhangwenwei committed
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
        type='MultiScaleFlipAug3D',
        img_scale=(1333, 800),
        pts_scale_ratio=1,
        flip=False,
        transforms=[
            dict(
                type='GlobalRotScaleTrans',
                rot_range=[0, 0],
                scale_ratio_range=[1., 1.],
                translation_std=[0, 0, 0]),
            dict(type='RandomFlip3D'),
            dict(
                type='PointsRangeFilter', point_cloud_range=point_cloud_range),
            dict(
                type='DefaultFormatBundle3D',
                class_names=class_names,
                with_label=False),
            dict(type='Collect3D', keys=['points'])
        ])
liyinhao's avatar
liyinhao committed
83
84
85
86
87
88
89
90
91
92
93
]

data = dict(
    samples_per_gpu=4,
    workers_per_gpu=4,
    train=dict(
        type=dataset_type,
        data_root=data_root,
        ann_file=data_root + 'nuscenes_infos_train.pkl',
        pipeline=train_pipeline,
        classes=class_names,
zhangwenwei's avatar
zhangwenwei committed
94
        modality=input_modality,
liyinhao's avatar
liyinhao committed
95
96
97
98
99
100
101
        test_mode=False),
    val=dict(
        type=dataset_type,
        data_root=data_root,
        ann_file=data_root + 'nuscenes_infos_val.pkl',
        pipeline=test_pipeline,
        classes=class_names,
zhangwenwei's avatar
zhangwenwei committed
102
        modality=input_modality,
liyinhao's avatar
liyinhao committed
103
104
105
106
107
108
109
        test_mode=True),
    test=dict(
        type=dataset_type,
        data_root=data_root,
        ann_file=data_root + 'nuscenes_infos_val.pkl',
        pipeline=test_pipeline,
        classes=class_names,
zhangwenwei's avatar
zhangwenwei committed
110
        modality=input_modality,
liyinhao's avatar
liyinhao committed
111
        test_mode=True))
zhangwenwei's avatar
zhangwenwei committed
112
113
114
115
116
# For nuScenes dataset, we usually evaluate the model at the end of training.
# Since the models are trained by 24 epochs by default, we set evaluation
# interval to be 24. Please change the interval accordingly if you do not
# use a default schedule.
evaluation = dict(interval=24)