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
As source code given below from EncoderDecoderModel, decoder_start_token_id are different between train and generation.
>>> # training >>> model.config.decoder_start_token_id = tokenizer.cls_token_id
>>> # generation >>> generated = model.generate(input_ids, decoder_start_token_id=model.config.decoder.pad_token_id)
Why they are not same?
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
As source code given below from EncoderDecoderModel, decoder_start_token_id are different between train and generation.
Why they are not same?
The text was updated successfully, but these errors were encountered: