Se = random.uniform(*self.s) * img.shape[0] * img.shape[1] re = random.uniform(*self.r)
这是cutout增强当中遇到的问题
把(*self.s)中的*去掉就会出现这样的结果
Se = random.uniform(*self.s) * img.shape[0] * img.shape[1] re = random.uniform(*self.r)
这是cutout增强当中遇到的问题
把(*self.s)中的*去掉就会出现这样的结果