gpt4 book ai didi

python - 数据增强映射函数中的 Tensorflow 随机数

转载 作者:行者123 更新时间:2023-12-04 13:15:16 25 4
gpt4 key购买 nike

我想用crop_central函数具有 0.50-1.00 之间的随机浮点数,用于数据增强。但是,当使用 numpy.random.uniform(0.50, 1.00) 时并绘制图像裁剪是恒定的。我通过使用 4 张图像并绘制 8 行来调试它,图像是相同的。

一般来说,问题可以表述如下:如何在数据集映射函数中使用随机数?

def data_augment(image, label=None, seed=2020):
# I want a random number here for every individual image
image = tf.image.central_crop(image, np.random.uniform(0.50, 1.00)) # random crop central
image = tf.image.resize(image, INPUT_SHAPE) # the original image size

return image

train_dataset = (
tf.data.Dataset
.from_tensor_slices((train_paths, train_labels))
.map(decode_image, num_parallel_calls=AUTO)
.map(data_augment, num_parallel_calls=AUTO)
.repeat()
.batch(4)
.prefetch(AUTO)
)

# Code to view the images
for idx, (imgs, _) in enumerate(train_dataset):
show_imgs(imgs, 'image', imgs_per_row=4)
if idx is 8:
del imgs
gc.collect()
break

最佳答案

早些时候,我误读了这个问题。这是您要找的答案。

我能够使用以下代码重新创建您的问题 -

重现问题的代码 - 裁剪图像的输出都是相同的。

%tensorflow_version 2.x
import tensorflow as tf
from keras.preprocessing.image import load_img
from keras.preprocessing.image import img_to_array, array_to_img
from matplotlib import pyplot as plt
import numpy as np
AUTOTUNE = tf.data.experimental.AUTOTUNE

# Set the sub plot parameters
f, axarr = plt.subplots(5,4,figsize=(15, 15))

# Load just 4 images of Cifar10
(x_train, y_train), (x_test, y_test) = tf.keras.datasets.cifar10.load_data()
images = x_train[:4]

for i in range(4):
axarr[0,i].title.set_text('Original Image')
axarr[0,i].imshow(x_train[i])

def data_augment(images):
image = tf.image.central_crop(images, np.random.uniform(0.50, 1.00)) # random crop central
image = tf.image.resize(image, (32,32)) # the original image size
return image

dataset = tf.data.Dataset.from_tensor_slices((images)).map(lambda x: data_augment(x)).repeat(4)

print(dataset)

ix = 0
i = 1
count = 0

for f in dataset:
crop_img = array_to_img(f)
axarr[i,ix].title.set_text('Crop Image')
axarr[i,ix].imshow(crop_img)
ix=ix+1
count = count + 1
if count == 4:
i = i + 1
count = 0
ix = 0

输出 - 第一行是原始图像。剩余的行是裁剪图像。

enter image description here

嗯,这是非常具有挑战性的,并提供了以下两种解决方案 -

解决方案1:使用 np.random.uniformtf.py_function .
  • 二手 np.random.uniform(0.50, 1.00) .
  • 二手 tf.py_function装饰函数调用 - tf.py_function(data_augment, [x], [tf.float32]) .

  • 解决问题的代码 - 裁剪输出图像现在​​不同且不相同。
    %tensorflow_version 2.x
    import tensorflow as tf
    from keras.preprocessing.image import load_img
    from keras.preprocessing.image import img_to_array, array_to_img
    from matplotlib import pyplot as plt
    import numpy as np
    AUTOTUNE = tf.data.experimental.AUTOTUNE

    # Set the sub plot parameters
    f, axarr = plt.subplots(5,4,figsize=(15, 15))

    # Load just 4 images of Cifar10
    (x_train, y_train), (x_test, y_test) = tf.keras.datasets.cifar10.load_data()
    images = x_train[:4]

    for i in range(4):
    axarr[0,i].title.set_text('Original Image')
    axarr[0,i].imshow(x_train[i])

    def data_augment(images):
    image = tf.image.central_crop(images, np.random.uniform(0.50, 1.00)) # random crop central
    image = tf.image.resize(image, (32,32)) # the original image size
    return image

    dataset = tf.data.Dataset.from_tensor_slices((images)).map(lambda x: tf.py_function(data_augment, [x], [tf.float32])).repeat(4)

    ix = 0
    i = 1
    count = 0

    for f in dataset:
    for l in f:
    crop_img = array_to_img(l)
    axarr[i,ix].title.set_text('Crop Image')
    axarr[i,ix].imshow(crop_img)
    ix=ix+1
    count = count + 1
    if count == 4:
    i = i + 1
    count = 0
    ix = 0

    输出 - 第一行是原始图像。剩余的行是裁剪图像。

    enter image description here

    解决方案2:使用 tf.random.uniformtf.py_function .
  • 二手 tf.random.uniform(shape=(), minval=0.50, maxval=1).numpy() .
  • 仅通过使用上述选项,代码就无法运行,因为它会抛出错误 AttributeError: 'Tensor' object has no attribute 'numpy' .要解决此问题,您需要使用 tf.py_function(data_augment, [x], [tf.float32]) 来装饰您的函数。 .

  • 解决问题的代码 - 裁剪输出图像现在​​不同且不相同。
    %tensorflow_version 2.x
    import tensorflow as tf
    from keras.preprocessing.image import load_img
    from keras.preprocessing.image import img_to_array, array_to_img
    from matplotlib import pyplot as plt
    import numpy as np
    AUTOTUNE = tf.data.experimental.AUTOTUNE

    # Set the sub plot parameters
    f, axarr = plt.subplots(5,4,figsize=(15, 15))

    # Load just 4 images of Cifar10
    (x_train, y_train), (x_test, y_test) = tf.keras.datasets.cifar10.load_data()
    images = x_train[:4]

    for i in range(4):
    axarr[0,i].title.set_text('Original Image')
    axarr[0,i].imshow(x_train[i])

    def data_augment(images):
    image = tf.image.central_crop(images, tf.random.uniform(shape=(), minval=0.50, maxval=1).numpy()) # random crop central
    image = tf.image.resize(image, (32,32)) # the original image size
    return image

    dataset = tf.data.Dataset.from_tensor_slices((images)).map(lambda x: tf.py_function(data_augment, [x], [tf.float32])).repeat(4)

    ix = 0
    i = 1
    count = 0

    for f in dataset:
    for l in f:
    crop_img = array_to_img(l)
    axarr[i,ix].title.set_text('Crop Image')
    axarr[i,ix].imshow(crop_img)
    ix=ix+1
    count = count + 1
    if count == 4:
    i = i + 1
    count = 0
    ix = 0

    输出 - 第一行是原始图像。剩余的行是裁剪图像。

    enter image description here

    希望这能回答你的问题。快乐学习。

    关于python - 数据增强映射函数中的 Tensorflow 随机数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61099736/

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