Keras 接口的 Input 输入model savetfrecord 输入

Posted Gelthin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Keras 接口的 Input 输入model savetfrecord 输入相关的知识,希望对你有一定的参考价值。


在 tf.keras 接口中,sequence 序列模型用 InputLayer 但是 fuctional API 用 Input()

input_ = tf.keras.layers.Input(shape=X_train.shape[1:])
hidden1 = tf.keras.layers.Dense(30, activation="relu")(input_)
hidden2 = tf.keras.layers.Dense(30, activation="relu")(hidden1)
concat_ = tf.keras.layers.Concatenate()([input_, hidden2])
output_ = keras.layers.Dense(1)(concat_)
model = tf.keras.Model(inputs=[input_], outputs=[output_])

以上是关于Keras 接口的 Input 输入model savetfrecord 输入的主要内容,如果未能解决你的问题,请参考以下文章

tf.keras.Input

Keras 输入形状错误

Keras 如何读取输入数据?

如何在 Keras 的顺序模型中更改输入形状

Keras LSTM 多维输入

Keras 2D输出