gpt4 book ai didi

python - Keras 输入形状

转载 作者:太空宇宙 更新时间:2023-11-04 09:55:20 25 4
gpt4 key购买 nike

输入形状在keras中是什么意思?

例如,我将形状 (1 x 1440)-> 1 行和 1440 列(特征)的输入发送到 keras 模型。总共有70,000个这样的向量。

但是当我从该层查询模型的输出形状时,

for layer in model.layers:
if layer.name == 'input2':
print layer.output

输出:

Tensor("input2_6:0", shape=(?, 1440), dtype=float32)

上面写着 shape=(?, 1440)。这是什么意思?

谢谢!

最佳答案

(?,) 表示模型需要任意数量的 1 x 1440 向量。人们通常不会将模型的输入数量固定为某个特定数量。

关于python - Keras 输入形状,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46097200/

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