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