输入形状在喀拉拉邦中意味着什么?
例如,我向keras模型发送形状为(1 x 1440)-> 1行和1440列(特征)的输入。总共有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/