源代码: model = Model(input=X_input, output=[x]) 错误提示: 修正: model = Model(inputs=X_input, outputs=[x]) 相关文章: