"docs/en/getting_started.md" did not exist on "1f79fc7b150f1a4b1d6cbb104ca5152b4c708d51"
Unverified Commit 3c540f71 authored by twang's avatar twang Committed by GitHub
Browse files

[Fix] Update GlobalRotScale in the config of pointpillars benchmark (#474)

* Update GlobalRotScale in the config of pointpillars benchmark

* Update config in the ObjectNoise
parent e1682ff6
...@@ -92,14 +92,14 @@ train_pipeline = [ ...@@ -92,14 +92,14 @@ train_pipeline = [
dict( dict(
type='ObjectNoise', type='ObjectNoise',
num_try=100, num_try=100,
loc_noise_std=[0.25, 0.25, 0.25], translation_std=[0.25, 0.25, 0.25],
global_rot_range=[0.0, 0.0], global_rot_range=[0.0, 0.0],
rot_uniform_noise=[-0.15707963267, 0.15707963267]), rot_range=[-0.15707963267, 0.15707963267]),
dict(type='RandomFlip3D', flip_ratio_bev_horizontal=0.5), dict(type='RandomFlip3D', flip_ratio_bev_horizontal=0.5),
dict( dict(
type='GlobalRotScale', type='GlobalRotScaleTrans',
rot_uniform_noise=[-0.78539816, 0.78539816], rot_range=[-0.78539816, 0.78539816],
scaling_uniform_noise=[0.95, 1.05]), scale_ratio_range=[0.95, 1.05]),
dict(type='PointsRangeFilter', point_cloud_range=point_cloud_range), dict(type='PointsRangeFilter', point_cloud_range=point_cloud_range),
dict(type='ObjectRangeFilter', point_cloud_range=point_cloud_range), dict(type='ObjectRangeFilter', point_cloud_range=point_cloud_range),
dict(type='PointShuffle'), dict(type='PointShuffle'),
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment