Are 1 and 2 same?
- use
Convolution2Dlayers andLSTMlayers - Use
ConvLSTM2D
If there is something difference, can you explain for me?
1 Answers
Answers 1
- Use Convolution2D layers and LSTM layer
In this technique, you stack convolution and LSTM layers. The convolutoinal layers help you to learn the spatial features and the LSTM helps you learn the correlation in time.
2.Use ConvLSTM2D
ConvLSTM is a LSTM in which the gates (input to state and state to state transitions) are convolution operations.
Research paper- Convolutional LSTM Network: A Machine Learning Approach for Precipitation Nowcasting
0 comments:
Post a Comment