gpt4 book ai didi

python - “密集”对象没有属性 'op'

转载 作者:行者123 更新时间:2023-12-03 14:35:12 27 4
gpt4 key购买 nike

关闭。这个问题是not reproducible or was caused by typos .它目前不接受答案。












想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。

5 个月前关闭。




Improve this question




我正在尝试使用 tensorflow.keras 制作一个完全连接的模型,这是我的代码

from tensorflow.keras.models import Model
from tensorflow.keras.layers import Input, Dense, Flatten

def load_model(input_shape):
input = Input(shape = input_shape)
dense_shape = input_shape[0]
x = Flatten()(input)
x = Dense(dense_shape, activation='relu')(x)
x = Dense(dense_shape, activation='relu')(x)
x = Dense(dense_shape, activation='relu')(x)
x = Dense(dense_shape, activation='relu')(x)
x = Dense(dense_shape, activation='relu')(x)
output = Dense(10, activation='softmax')

model = Model(input , output)
model.summary()
return model
但是当我调用模型时
model = load_model((120,))
我有这个错误
'Dense' object has no attribute 'op'
我怎样才能解决这个问题?

最佳答案

您失踪了 (x)在你的输出层之后。尝试

output = Dense(10 , activation = 'softmax')(x)

关于python - “密集”对象没有属性 'op',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61083004/

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