python - reshape 的 tensorflow 维数问题

标签 python tensorflow reshape

我已经创建了这段代码,但我遇到了维度错误

import pandas as pd
import matplotlib.pyplot as plt
import numpy as np
import tensorflow as tf
from tensorflow.contrib.rnn.python.ops import rnn_cell, rnn
from time import time

# 2) Import MNIST data http://yann.lecun.com/exdb/mnist/
from tensorflow.examples.tutorials.mnist import input_data
mnist = input_data.read_data_sets("MNIST_data/", one_hot=True)
x_train = mnist.train.images 

# Define the appropriate model and variables (USER INPUTS)
batch = 100 # Define the size of the batch
units = 32 # Number of units of each network
recurrent_layers = 1 # Number of layers
nnclasses = 10 # MNIST classes (0-9)
steps = x_train.shape[1] # 784
feed = 1 # Number of pixels to be fed into the model
recurrent_layers = 1 # Define the size of the recurrent layers
dropout = 1 # 

x = tf.placeholder(tf.float32,[None, None]) # batch(100)x784
x_resh = tf.reshape(x,[-1,steps,1]) # (100, 784, 1)
keep_prob = tf.placeholder(tf.float32,shape=[]) 

def weight_variable(shape):
    initial = tf.truncated_normal(shape, stddev=0.1)
    return tf.Variable(initial)

w_fc = weight_variable([units, nnclasses])

cell = tf.contrib.rnn.GRUCell(units)
cell = tf.contrib.rnn.DropoutWrapper(cell, input_keep_prob = keep_prob)
cell = tf.contrib.rnn.MultiRNNCell([cell] * recurrent_layers)
cell = tf.contrib.rnn.DropoutWrapper(cell, output_keep_prob = keep_prob)
outputs, final_state = tf.nn.dynamic_rnn(cell, x_resh, dtype=tf.float32)
output = outputs[:,:-1, :]
logits = tf.matmul(tf.reshape(output,[-1,tf.shape(w_fc)[0]]), w_fc) # [78300, 10]
y = tf.reshape(x[:,1:], [-1, nnclasses]) # [7830, 10]
K = [tf.shape(y)[0], tf.shape(logits)[0]]

sess = tf.InteractiveSession()   
sess.run(tf.global_variables_initializer())

def binarize(images, threshold=0.1):
    return (threshold < images).astype('float32')
batch_x, _ = mnist.train.next_batch(batch)
batch_x = binarize(batch_x, threshold=0.1)

return = sess.run(K, feed_dict={x: batch_x, keep_prob: 1.0})

返回 [7830, 78300]。问题是这两个数字应该是相同的。它们是 y 和 logits 的行,如果它们不相似,我就无法在交叉熵设置中比较它们。有人可以告诉我这个过程哪里错了吗?实际上,(y)应该返回[78300, 10],但我不知道为什么。

最佳答案

y = tf.reshape(x[:,1:], [-1, nnclasses]) # [7830, 10]

您的 x 张量的形状为 batch(100)x784,因此 x[:1,:] 为 100x783。总共有 78,300 个元素。 78300x10 将是 783,000,您只是在 x 中没有足够的数据来使其成为该形状。

您的意思是使用 logits 作为 y 的参数吗?假设 y 是您的输出,使用 x 作为参数意味着您已经绕过了整个网络。

关于python - reshape 的 tensorflow 维数问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42704808/

相关文章:

python - Google App Engine 中用于 SMTP 连接的实验性套接字 API

javascript - 如何使用AJAX正确地将表单提交到Flask?

python - 值错误 : No gradients provided for any variable (Tensorflow)

python - 将 "grouped"列中的数据从长格式转换为宽/方形格式 pd.DataFrame

r - 使用 FF 包在 R 中创建和 reshape 大数据的函数

python - 如何将列中的列表转换为垂直形状?

Python:如何有效地检查一个项目是否在列表中?

python - 在Tensorflow中获取Tensor的原始值

python - Dataset.map() 中的 Tensorflow 解析和 reshape 浮点列表

python - 使用keras计算每个时期的Fscore(不是批量的)