Keras TypeError: ('Keyword argument not understood:', 'input')

TypeError: ('Keyword argument not understood:', 'input')


 
model = Model(input=[inputs], output=output)

报错信息
TypeError: ('Keyword argument not understood:', 'input')


解决方法
换成

model = Model(inputs=..., outputs=...)

 

REF

https://blog.csdn.net/weixin_43360896/article/details/112055269

posted @   emanlee  阅读(5297)  评论(0编辑  收藏  举报
点击右上角即可分享
微信分享提示