gpt4 book ai didi

python - ValueError : Error when checking input: expected dense_39_input to have shape (6, )但得到形状为(1,)的数组

转载 作者:行者123 更新时间:2023-11-30 10:00:08 26 4
gpt4 key购买 nike

这是我在 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 : Error when checking input: expected dense_39_input to have shape (6, )但得到形状为(1,)的数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59346871/

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