We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi. I think the recurrent cells in flux need a dropout for their internal states to improve training in larger networks
For example : mycell= GRU(10,10,0.1)
Where 0.1 is dropout
Or is there an easy way to implement this manually?
The text was updated successfully, but these errors were encountered:
Dropout in between stacked layers can be implemented as described in #2514 (comment) We should add this to the guide on recurrent layers.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Hi. I think the recurrent cells in flux need a dropout for their internal states to improve training in larger networks
For example : mycell= GRU(10,10,0.1)
Where 0.1 is dropout
Or is there an easy way to implement this manually?
The text was updated successfully, but these errors were encountered: