神经网络训练集较小时的数据增强
扩展数据集,对图像的增强就是对图像的简单形变,用来应变因拍照角度不同引起的图片变形
from tensorflow.keras.preprocessing.image import ImageDataGenerator
image_gen_train = tf.kears.preprocessing.image.ImageDataGeneration(
rescale = 输入量×的超参数 # 改变输入大小
rotation_range = 图像随机旋转角度的范围
width_shift_range = 随机宽度偏移量
height_shift_range = 随机高度偏移量
水平翻转:horizontal_flip = 是否随机水平旋转
随机缩放:zoom_range = 随机缩放的范围[1-n,1+n])
image_gen_train.fit(x_tra
共有 0 条评论