Fork me on CSDN

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

源代码:

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

错误提示:

 

 修正:

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

 

posted @ 2021-07-27 20:59  追风赶月的少年  阅读(1100)  评论(0编辑  收藏  举报