From 13aa36344ef14c64d4d0f10f1214be418fd57f55 Mon Sep 17 00:00:00 2001 From: cxy1997 <1023764859@qq.com> Date: Wed, 20 May 2020 10:16:26 -0400 Subject: [PATCH] Fixed typos in kitti argmentation --- core/datasets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/datasets.py b/core/datasets.py index bcd0a04..405c401 100644 --- a/core/datasets.py +++ b/core/datasets.py @@ -221,7 +221,7 @@ class KITTI(FlowDataset): self.do_pad = do_pad if self.do_augument: - self.augumentor = FlowAugumentorKITTI(self.image_size, args.eraser_aug, min_scale=-0.2, max_scale=0.5) + self.augumentor = FlowAugmentorKITTI(self.image_size, min_scale=-0.2, max_scale=0.5) if self.is_test: images1 = sorted(glob(os.path.join(root, 'testing', 'image_2/*_10.png')))