Tensorflow报错 :TypeError: unhashable type: 'numpy.ndarray'

x = tf.placeholder("float", [batch_size, n_steps, n_input])
y = tf.placeholder("float", [batch_size, n_classes])
stacked_rnn = []
for iiLyr in range(3):
    stacked_rnn.append(tf.contrib.rnn.LSTMCell(n_hidden))
mcell = tf.contrib.rnn.MultiRNNCell(stacked_rnn)


x= tf.unstack(x,n_steps,1)
outputs, states = tf.contrib.rnn.static_rnn(mcell, x, dtype=tf.float32)

会报错:TypeError: unhashable type: 'numpy.ndarray
原因:
在启动sess并给placeholeder喂数据后报错:TypeError: unhashable type: ‘numpy.ndarray’。
这是由于变量名与占位符名冲突导致的,看到莫名其妙的TypeError要考虑是否存在变量名重复。

你可能感兴趣的:(tensorflow)