LSTM
aries_whx
这个作者很懒,什么都没留下…
展开
-
LSTM with Keras functional API (1)
There are two main types of models available in Keras: the Sequential model, and the tf.keras.Model class. In this post, we will focus on the latter.Model is a class that can group layers into an obj...原创 2019-02-19 17:04:43 · 370 阅读 · 0 评论 -
LSTM with Keras functional API (2)
Train the model (1)After defining the model, we can create an instance of the MyModel class, compile and fit the dataset same as Sequential:build an instance of class Modelmodel = MyModel()copile ...原创 2019-02-20 17:03:18 · 175 阅读 · 1 评论