From 007a1db12d933f164f93baf13b1113663cf4cea0 Mon Sep 17 00:00:00 2001 From: Xiangxu-0103 Date: Wed, 15 Mar 2023 14:32:33 +0800 Subject: [PATCH] update doc --- .../test_apis/test_inferencers/test_lidar_seg3d_inferencer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_apis/test_inferencers/test_lidar_seg3d_inferencer.py b/tests/test_apis/test_inferencers/test_lidar_seg3d_inferencer.py index 0b4425280d..df49fa7a4f 100644 --- a/tests/test_apis/test_inferencers/test_lidar_seg3d_inferencer.py +++ b/tests/test_apis/test_inferencers/test_lidar_seg3d_inferencer.py @@ -36,7 +36,7 @@ def assert_predictions_equal(self, preds1, preds2): def test_call(self): if not torch.cuda.is_available(): return - # single img + # single point cloud inputs = dict(points='tests/data/s3dis/points/Area_1_office_2.bin') torch.manual_seed(0) res_path = self.inferencer(inputs, return_vis=True) @@ -52,7 +52,7 @@ def test_call(self): self.assertIn('visualization', res_path) self.assertIn('visualization', res_ndarray) - # multiple images + # multiple point clouds inputs = [ dict(points='tests/data/s3dis/points/Area_1_office_2.bin'), dict(points='tests/data/s3dis/points/Area_1_office_2.bin')