gpt4 book ai didi

python - tf.data.Dataset 的增强

转载 作者:行者123 更新时间:2023-12-03 19:15:45 29 4
gpt4 key购买 nike

关注 this在这里指导我偶然发现:为了增加 tf.data 数据集,我们手动使用 map 函数在原始数据集的每个图像中映射图像转换:

def convert(image, label):
image = tf.image.convert_image_dtype(image, tf.float32) # Cast and normalize the image to [0,1]
return image, label

def augment(image,label):
image,label = convert(image, label)
image = tf.image.convert_image_dtype(image, tf.float32) # Cast and normalize the image to [0,1]
image = tf.image.resize_with_crop_or_pad(image, 34, 34) # Add 6 pixels of padding
image = tf.image.random_crop(image, size=[28, 28, 1]) # Random crop back to 28x28
image = tf.image.random_brightness(image, max_delta=0.5) # Random brightness

return image,label

BATCH_SIZE = 64
# Only use a subset of the data so it's easier to overfit, for this tutorial
NUM_EXAMPLES = 2048

augmented_train_batches = (
train_dataset
# Only train on a subset, so you can quickly see the effect.
.take(NUM_EXAMPLES)
.cache()
.shuffle(num_train_examples//4)
# The augmentation is added here.
.map(augment, num_parallel_calls=AUTOTUNE)
.batch(BATCH_SIZE)
.prefetch(AUTOTUNE)
)
据我所知,这是做什么的:它需要原始 train_dataset并创建一个新的 augmented_train_batches具有相同数量的由 map 转换更改的图像的数据集。之后,将这个数据集输入 .fit像这样:
model_with_aug.fit(augmented_train_batches, epochs=50, validation_data=validation_batches)
所以我似乎无法理解的是:是否应该在每个时期之后更改数据,以便(根据文档)我们的模型不会多次看到相同的图像,而且使我们的过度拟合机会降低?
在本教程中不是 augmented_train_batches只是一个稍微改变的数据集,它一遍又一遍地输入我们的模型?
还是在每个时代之后以我无法理解的方式以某种方式应用了增强?
P.S.我认为增强(如果正确完成)必须在每个时代之后以相同的方式更改预转换的数据,而不是继续将转换应用于相同的更改数据集。

最佳答案

is the augmentaion somehow being applied after each epoch in a way i can't understand?



不,在本教程中,增强仅进行一次,而不是在每个时期进行。
当我们想使用 Data Augmentation 来训练每个 epoch 生成增强数据的网络时,使用 TF Keras Image Data Generator 来生成它会更容易。这将创建一个迭代器,您可以直接向模型提供增强数据。您可以在此 link 中阅读更多相关信息.

本教程仅向您介绍数据增强的基本概念和好处。

请注意教程中的这一部分:
BATCH_SIZE = 64
# Only use a subset of the data so it's easier to overfit, for this tutorial
NUM_EXAMPLES = 2048

本教程仅打算使用数据子集,这就是为什么它更容易过度拟合,因此这可能是您担心过度拟合几率更高的原因。

增强是为了获得更多的数据,我们只需要对我们现有的数据集做一些小的改动。您可以使用 tf.image 进行细微的更改,例如翻转、平移或旋转。并使用 map 方法将其应用于数据集中的每个项目 .map() .我们的神经网络无论如何都会认为这些是不同的图像。

在教程中,将非增强数据与训练增强数据分开训练只是为了比较和显示差异有多大。

In this example the augmented model converges to an accuracy ~95% on the validation set. This is slightly higher (+1%) than the model trained without data augmentation.



我们可以清楚地看到,两者之间没有太大的区别。但通常使用增强的目的是为您的数据集提供更多更改的数据,因此如果您将其与原始数据集组合并增加时代数,结果可能会提供更大的差异。

关于python - tf.data.Dataset 的增强,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60744247/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com