-
Notifications
You must be signed in to change notification settings - Fork 130
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
MaskedComputationLayer: beam search bug inside recurrent loop #755
Comments
Can you post the error? |
The error is: |
Please always also post relevant snippets directly here.
|
And also relevant config parts for what you get the error. (The issue should contain all relevant information.)
|
Okay, I'll do that next time, thanks |
When the layer is inside a recurrent loop, uses a mask which depends on the previous output and has an input which is not dependent on the output, then there is an error during beam search. I think the problem is caused by the fact that the mask has beam information in such a case while the input has not (because it is not dependent on the output). I am going to create a PR with a corresponding test case.
The text was updated successfully, but these errors were encountered: