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
There are in Decoder:
Decoder
.memory
.processed_memory
.mask
And,
.initialize_decoder_states()
.forward()
.inference()
.decode()
Should they be arguments of .decode()?
(If so, mask has to be added to .forward()/.inference(). memory is already there. processed_memory is produced from the latter.)
mask
memory
processed_memory
The text was updated successfully, but these errors were encountered:
No branches or pull requests
There are in
Decoder
:.memory
,.processed_memory
,.mask
.And,
.initialize_decoder_states()
(called from.forward()
and.inference()
, unconditionally)..decode()
only.Should they be arguments of
.decode()
?(If so,
mask
has to be added to.forward()
/.inference()
.memory
is already there.processed_memory
is produced from the latter.)The text was updated successfully, but these errors were encountered: