gpt4 book ai didi

python - ValueError : Error when checking input: expected dense_1_input to have shape (None, None, 9000) 但得到了形状为 (9000, 1, 4) 的数组

转载 作者:太空宇宙 更新时间:2023-11-03 14:25:28 25 4
gpt4 key购买 nike

我只是想让我的模型工作,但运行它会产生以下错误:

ValueError: Error when checking input: expected dense_1_input to have shape (None, None, 9000) but got array with shape (9000, 1, 4)

我已经将有关形状问题的每个主题阅读了 3 遍,但没有得到对我有帮助的答案。 Here是我的代码。

我应该改变什么才能获得正确的形状?任何帮助将不胜感激。

最佳答案

您在此行中将输入形状指定为 (None,9000)

model.add(Dense(units = 64, input_shape = (None, 9000)))

但是您的输入数据的形状为 (9000,1,4)。因此您应该将输入形状更改为

model.add(Dense(units = 64, input_shape = (1, 4)))

不需要在 input_shape 中指定第一个维度

关于python - ValueError : Error when checking input: expected dense_1_input to have shape (None, None, 9000) 但得到了形状为 (9000, 1, 4) 的数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47665072/

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