train_gen=ImageDataGenerator(rescale=1./255,)
可以正常运行 训练模型
train_gen=ImageDataGenerator(rescale=1./255,
rotation_range=20,
width_shift_range=0.2,
height_shift_range=0.2,)
加了几个操作后 报错
AttributeError: module 'scipy.ndimage' has no attribute 'interpolation'
真的很不理解为什么会报错