gpt4 book ai didi

python - 增强 mnist 数据集 tensorflow

转载 作者:行者123 更新时间:2023-11-30 09:33:47 24 4
gpt4 key购买 nike

我正在尝试扩充 MNIST 数据集。这就是我尝试过的。无法取得任何成功。

from tensorflow.examples.tutorials.mnist import input_data
import tensorflow as tf

X = mnist.train.images
y = mnist.train.labels

def flip_images(X_imgs):
X_flip = []
tf.reset_default_graph()
X = tf.placeholder(tf.float32, shape = (28, 28, 1))
input_d = tf.reshape(X_imgs, [-1, 28, 28, 1])
tf_img1 = tf.image.flip_left_right(X)
with tf.Session() as sess:
sess.run(tf.global_variables_initializer())
for img in input_d:
flipped_imgs = sess.run([tf_img1], feed_dict = {X: img})
X_flip.extend(flipped_imgs)
X_flip = np.array(X_flip, dtype = np.float32)
return X_flip

flip = flip_images(X)

我做错了什么?我似乎无法弄清楚。

错误:

Line: for img in input_d:
raise TypeError("'Tensor' object is not iterable.")
TypeError: 'Tensor' object is not iterable

最佳答案

首先,请注意您的 tf.reshape 将类型从 ndarray 更改为张量。需要调用 .eval() 才能将其恢复。在该 for 循环中,您尝试迭代张量(不是列表或真正的可迭代对象),请考虑按数字索引,如下所示:

X = mnist.train.images
y = mnist.train.labels

def flip_images(X_imgs):

X_flip = []
tf.reset_default_graph()
X = tf.placeholder(tf.float32, shape = (28, 28, 1))

input_d = tf.reshape(X_imgs, [-1, 28, 28, 1])
tf_img1 = tf.image.flip_left_right(X)

with tf.Session() as sess:
sess.run(tf.global_variables_initializer())
for img_ind in range(input_d.shape[0]):
img = input_d[img_ind].eval()
flipped_imgs = sess.run([tf_img1], feed_dict={X: img})
X_flip.extend(flipped_imgs)
X_flip = np.array(X_flip, dtype = np.float32)
return X_flip

flip = flip_images(X)

如果这可以解决您的问题,请告诉我!可能需要将范围设置为一个小常量以进行测试,如果您没有 GPU,这可能需要一段时间。

关于python - 增强 mnist 数据集 tensorflow ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49702795/

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