gpt4 book ai didi

python - Tensorflow 无法为形状为 'x:0' 的张量 '(?, 128)' 提供 shape(1,) 的值

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

我刚刚浏览了 Stack Overflow 和其他论坛,但找不到任何对我的问题有帮助的内容。但似乎与this question有关.

我目前有一个经过训练的 Tensorflow 模型(128 个输入和 11 个输出),并按照 Tensorflow 的 MNIST 教程保存了该模型。

它似乎很成功,我现在在这个文件夹中有一个模型,其中包含 3 个文件(.meta、.ckpt.data 和 .index)。但是,我想恢复它并将其用于预测:

#encoding[0] => numpy ndarray (128, ) # anyway a list with only one entry
#unknowndata = np.array(encoding[0])[None]
unknowndata = np.expand_dims(encoding[0], axis=0)
print(unknowndata.shape) # Output (1, 128)

# Restore pre-trained tf model
with tf.Session() as sess:
#saver.restore(sess, "models/model_1.ckpt")
saver = tf.train.import_meta_graph('models/model_1.ckpt.meta')
saver.restore(sess,tf.train.latest_checkpoint('models/./'))
y = tf.get_collection('final tensor') # tf.nn.softmax(tf.matmul(y2, W3) + b3)
X = tf.get_collection('input') # tf.placeholder(tf.float32, [None, 128])

# W1 = tf.get_collection('vars')[0]
# b1 = tf.get_collection('vars')[1]
# W2 = tf.get_collection('vars')[2]
# b2 = tf.get_collection('vars')[3]
# W3 = tf.get_collection('vars')[4]
# b3 = tf.get_collection('vars')[5]

# y1 = tf.nn.relu(tf.matmul(X, W1) + b1)
# y2 = tf.nn.relu(tf.matmul(y1, W2) + b2)
# yLog = tf.matmul(y2, W3) + b3
# y = tf.nn.softmax(yLog)

prediction = tf.argmax(y, 1)

print(sess.run(prediction, feed_dict={i: d for i,d in zip(X, unknowndata.T)}))
# also had sess.run(prediction, feed_dict={X: unknowndata.T}) and also not transposed, still errors

# Output: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] # one should be 1 obviously with a specific percentage

在那里我只会遇到问题......

ValueError: Cannot feed value of shape (1,) for Tensor 'x:0', which has shape '(?, 128)' Altough I print the shape of the 'unknowndata' and it matches the (1, 128). I also tried it with

sess.run(prediction, feed_dict={X: unknownData})) # with transposed etc. but nothing worked for me there I got the other error

TypeError: unhashable type: 'list'

我只想对这个漂亮的 Tensorflow 训练模型进行一些预测。

最佳答案

我发现问题了!首先,我需要恢复所有值(权重和偏差,并分别对它们进行矩阵相乘)。其次,在我的例子中,我需要创建与训练模型中相同的输入:

X = tf.placeholder(tf.float32, [None, 128])

然后调用预测:

sess.run(prediction, feed_dict={X: unknownData})

但是我没有得到任何百分比分布,但我预计这是由于 softmax 函数造成的。有人知道如何访问这些吗?

关于python - Tensorflow 无法为形状为 'x:0' 的张量 '(?, 128)' 提供 shape(1,) 的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46496213/

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