-
-
Notifications
You must be signed in to change notification settings - Fork 612
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
RNN layer to skip certain time steps (like Masking
layer in keras)
#644
Comments
You can just write the for loop and not call the RNN when you encounter a missing value. I could be misunderstanding what you need here, but if so we might need more description of what |
I think that something like |
How does triage work? |
When we have the community call (every other Tuesday @ 12PM EST), we set aside some time to go through the issues in the triage. Based on the discussion we will either move it to a high/low priority fix, needs input from maintainers, or should be closed. The possible outcomes are a PR submitted to fix, or we bring it up to the maintainers. Honestly, these issues will be the first real test of the system, so I don't know exactly how we'll do the second part. Probably, I will take the meeting notes and make comments on the issues that need maintainer input and ping someone to make the final decision. The main idea is to get input from the community and use some extra bandwidth to talk through stale issues. |
From the triage meeting today, we concluded that keras-style masking is already supported as mentioned by just skipping certain time steps. However, there remains the question of how to mask only certain features in a given timestep (which AFAICT tf/keras does not support), and as such this issue can be refocused on that instead. |
closing as this is something very specific and use case dependent, should be handled by the user. |
Is there a way to let an RNN layer to skip certain time steps? Possible use cases will be
In keras, this is achieved by inserting
Masking
layer before recurrent layers.Is there a way to do the same on Flux?
The text was updated successfully, but these errors were encountered: