tensorflow ValueError:没有为任何变量提供渐变

f0brbegy  于 2022-11-25  发布在  其他
关注(0)|答案(3)|浏览(158)

我遇到了tensorFlow的问题。

import tensorflow as tf
import input_data

learning_rate = 0.01
training_epochs = 25
batch_size = 100
display_step = 1

mnist = input_data.read_data_sets("MNIST_data/", one_hot=True)

# tensorflow graph input
X = tf.placeholder('float', [None, 784]) # mnist data image of shape 28 * 28 = 784
Y = tf.placeholder('float', [None, 10]) # 0-9 digits recognition = > 10 classes

# set model weights
W = tf.Variable(tf.zeros([784, 10]))
b = tf.Variable(tf.zeros([10]))

# Our hypothesis
activation = tf.add(tf.matmul(X, W),b)  # Softmax

# Cost function: cross entropy
cost = tf.reduce_mean(tf.nn.softmax_cross_entropy_with_logits(labels=activation, logits=Y))
optimizer = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(cost)  # Gradient Descen

出现以下错误:
ValueError:没有为任何变量提供渐变,请检查您的图形中变量['Tensor(“Variable/read:0”,shape=(784,10),dtype= float 32;','Tensor(“Variable_1/read:0”,shape=(10,),dtype= float 32;']和损失Tensor(“Mean:0”,shape=(),dtype= float 32)之间不支持渐变的运算符。

n1bvdmb6

n1bvdmb61#

此问题是由以下行引起的:tf.nn.softmax_cross_entropy_with_logits(labels=activation, logits=Y)
根据documentation,您应该有
labels:每行labels[i]必须是有效的概率分布。
logits:未标度的对数概率。
假设logits是你的假设,它等于activation,有效的概率分布是Y,把它改成tf.nn.softmax_cross_entropy_with_logits(labels=Y, logits=activation)

piah890a

piah890a2#

我在这里结束是因为我已经将输入的X数据传递给了我的模型,而不是我预期的输出。

model.fit(X, epochs=30)      # whoops!

我应该有:

model.fit(X, y, epochs=30)   # fixed!
q35jwt9p

q35jwt9p3#

在我的例子中,我忘记了向模型中添加编译层

model.compile(optimizer='adam',  loss = 'categorical_crossentropy', metrics = ['accuracy'] )

相关问题