keras plot_model 画出来的图只有sequnce

Posted _刘文凯_

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了keras plot_model 画出来的图只有sequnce相关的知识,希望对你有一定的参考价值。

原因

batch_input_shape
input_shape
参数设置错误
对于Bidirectional CuDNNLSTM 必须以Reshape层输入

解决

设置好这个参数
例如:

model.add(Reshape(input_shape=(10,10),target_shape=(10,10)))
model.add(Bidirectional(CuDNNLSTM(units=64,
                      return_sequences=True), merge_mode='concat'))

以上是关于keras plot_model 画出来的图只有sequnce的主要内容,如果未能解决你的问题,请参考以下文章

[tensorflow]plot_model

获取keras中间层输出模型保存与加载

python pandas.DataFrame.plot()画出来的图如何显示x轴出来。

1.Java简介

matplotlib包画基本的图

自己画的图