首页 > 其他分享 >Keras TypeError: ('Keyword argument not understood:', 'input')

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

时间:2023-11-02 11:07:56浏览次数:28  
标签:inputs TypeError Keyword Keras argument understood input

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

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

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

解决方法
换成

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

 


标签:inputs,TypeError,Keyword,Keras,argument,understood,input
From: https://blog.51cto.com/emanlee/8142503

相关文章