这是我在stackoverflow中的第一篇文章。
因此,我建立了一个预测AirBnb价格的神经网络,其准确度为77%,但是我正努力输入一个数组,以便模型可以给我一个预测。 (Jupyter笔记本)

xa = np.array([3, 1, 1, 28, 1, 1])
print(xa.shape)
(6,)

ynew = nn3.predict(xa[0:1])
print(ynew)


在第5行之后出现错误

ValueError: Error when checking input: expected dense_39_input to have shape (6,) but got array with shape (1,)


与ynew = nn3.predict(xa)我有同样的错误。

谢谢!

最佳答案

尝试这个 :

xa = numpy.array([[3, 1, 1, 28, 1, 1]])
ynew = nn3.predict(xa)
print(ynew)

关于python - ValueError:检查输入时出错:预期density_39_input具有形状(6,),但具有形状(1,)的数组,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/59346871/

10-12 20:43