Unverified Commit 6aff8be6 authored by Jiajun Deng's avatar Jiajun Deng Committed by GitHub
Browse files

Fix a small bug in random_world_translation() (#797)

* add cbgs_dyn_pp_centerpoint.yaml

* add cbgs_voxel01_res3d_centerpoint.yaml

* add support of centerpoint on Nuscenes in README

* add translation augmentation, re-implement the performance of CenterPoints with 0.075m voxels

* cover the original world translation augmentation

* modify random_translation_along_X

* fix a small bug in random_world_translation()
parent d921d138
...@@ -100,7 +100,7 @@ class DataAugmentor(object): ...@@ -100,7 +100,7 @@ class DataAugmentor(object):
def random_world_translation(self, data_dict=None, config=None): def random_world_translation(self, data_dict=None, config=None):
if data_dict is None: if data_dict is None:
return partial(self.random_world_translation_v2, config=config) return partial(self.random_world_translation, config=config)
noise_translate_std = config['NOISE_TRANSLATE_STD'] noise_translate_std = config['NOISE_TRANSLATE_STD']
if noise_translate_std == 0: if noise_translate_std == 0:
return data_dict return data_dict
......
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