keras中使用concatenate报错

Layer concatenate_1 was called with an input that isn't a symbolic tensor. Received type: <class 'tuple'>. Full input:

原代码

x = concatenate((input_1, input_2), axis=1)

修改代码

x = concatenate([input_1, input_2], axis=1)
上一篇:xshell连接时显示“服务器发送了一个意外的数据包。received:3,expected:20“问题的解决方法


下一篇:【Azure API 管理】在APIM中使用客户端证书验证API的请求,但是一直提示错误"No client certificate received."