-
Notifications
You must be signed in to change notification settings - Fork 0
chapter 5 How to Develop Encoder Decoder LSTMs
Butcher Yang edited this page Jan 1, 2018
·
2 revisions
The goal of this lesson is to learn how to develop encoder-decoder LSTM models. After completing this lesson, you will know:
- The Encoder-Decoder LSTM architecture and how to implement it in Keras.
- The addition sequence-to-sequence prediction problem.
- How to develop an Encoder-Decoder LSTM for the addition sequence-to-sequence predic- tion problem.
This lesson is divided into 7 parts; they are:
- The Encoder-Decoder LSTM.
- Addition Prediction Problem.
- Define and Compile the Model.
- Fit the Model.
- Evaluate the Model.
- Make Predictions With the Model.
- Complete Example.