Question: You need to construct a network that can predict 4 steps ahead. Rewrite the following model to achieve this objective using LSTM cells and recurrent

You need to construct a network that can predict 4 steps ahead. Rewrite the following model to achieve this objective using LSTM cells and recurrent layers of 16 cells each.
model
keras.models.Sequential([
keras.layers.SimpleRNN(20, return_sequences=True, input_shape-[None,1]),
keras.layers.SimpleRNN(20),
keras.layers.Dense(1)

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!