-
Notifications
You must be signed in to change notification settings - Fork 19.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ConvLSTM architecture for sequence-to-sequence prediction #18743
Labels
type:support
User is asking for help / asking an implementation question. Stackoverflow would be better suited.
Comments
sachinprasadhs
added
the
type:support
User is asking for help / asking an implementation question. Stackoverflow would be better suited.
label
Nov 7, 2023
Hi, You can refer the below example to predict the next set of frames using The above example predicts the next 10 frames. |
Below code is the model implementation:
Here
STDOUT of model summary:
The error I am getting:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
type:support
User is asking for help / asking an implementation question. Stackoverflow would be better suited.
The task: precipitation nowcasting for radar echo measurements. Predict next 16 frames given recent 4 ones.
The data: single measurement - image of shape
(252, 252)
with intensity values as pixels. Input Sequence - collection of time distributed images with shape(batch_size, 4, 1, 252, 252)
. Output Sequence has shape(batch_size, 16, 1, 252, 252)
.The problem: I need simple architecture applying
ConvLSTM2D
The text was updated successfully, but these errors were encountered: