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

时间:2021-07-28 21:23:54   收藏:0   阅读:0

源代码:

model = Model(input=X_input, output=[x])

错误提示:

技术图片

 

 修正:

model = Model(inputs=X_input, outputs=[x])

 

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!