-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
v2: dynamic_unroll
using lstm_with_recurrent_dropout
doesn't work
#161
Comments
CC @superbobry |
The line mentioned: @meta-inf do you think that extracting So your usage gonna look something like: |
@SergeyVolodko I'm not sure what you meant by I guess the easiest fix is to set that cell parameter to 0: it's a placeholder and is never used. But any change that makes my original code example work would be fine to me. |
Thanks, @meta-inf ! |
The following code doesn't work:
promopting
Seems it is because you are trying to store a
None
value to the initial state of a while loop. Changing the None value on this line to0.
appears to fix this.I'm using
tensorflow-gpu 2.1.0
and python 3.6. For sonnet I've tried both2.0.0b0
and the HEAD version (1f5c0c241
).The text was updated successfully, but these errors were encountered: