keras2.0 Merge层改为函数式

不能再向以前一样使用
model.add(Merge([Model1,Model2]))
必须使用函数式

out = Concatenate()([model1.output, model2.output])

你可能感兴趣的:(keras)