作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想使用批处理从文件夹中读取图像。但是解码后,当我使用tf.train.batch
时可能会出现一些问题。这是代码。
def get_batch(image, label, batch_size, capacity):
image = tf.cast(image, tf.string)
label = tf.cast(label, tf.int32)
input_queue = tf.train.slice_input_producer([image, label])
label = input_queue[1]
image_contents = tf.read_file(input_queue[0])
image = tf.image.decode_jpeg(image_contents, channels=3)
image = tf.image.per_image_whitening(image)
image_batch, label_batch = tf.train.batch([image, label],
batch_size = batch_size,
num_threads = 8,
capacity = capacity)
label_batch = tf.reshape(label_batch, [batch_size])
image_batch = tf.cast(image_batch, tf.float32)
return image_batch, label_batch
错误说我还没有定义一些张量形状。我不知道该怎么做。也许我没有以正确的方式使用解码。这是错误。
Traceback (most recent call last):
File "input_data.py", line 118, in <module>
image_batch, label_batch = get_batch(image_list, label_list, BATCH_SIZE, CAPACITY)
File "input_data.py", line 90, in get_batch
capacity = capacity)
File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/training/input.py", line 538, in batch
capacity=capacity, dtypes=types, shapes=shapes, shared_name=shared_name)
File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/ops/data_flow_ops.py", line 453, in __init__
shapes = _as_shape_list(shapes, dtypes)
File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/ops/data_flow_ops.py", line 71, in _as_shape_list
raise ValueError("All shapes must be fully defined: %s" % shapes)
ValueError: All shapes must be fully defined: [TensorShape([Dimension(None), Dimension(None), Dimension(3)]), TensorShape([])]
最佳答案
要批处理的数据必须具有预定义的形状,在这种情况下,张量 image
没有,您需要使用 image.set_shape
指定形状或tf.image.resize_images
关于python - Tensorflow ValueError : All shapes must be fully defined: [TensorShape([Dimension(None), 维度(无),维度(3)]),TensorShape([]),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45770740/
我是一名优秀的程序员,十分优秀!