Add position_ids
in XLMRobertaXLForCausalLM.prepare_inputs_for_generation
#35044
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What does this PR do?
The model component
XLMRobertaXLEmbeddings
will performif
position_ids
is not passed to the model (sayXLMRobertaXLForCausalLM
).However, during the decoding, even if
past_key_values_length
is passed, thecreate_position_ids_from_input_ids
will compute the wrongposition_ids
when theinput_ids
is only the single last token. This is becausecreate_position_ids_from_input_ids
relies the wholeinput_ids
in order to get the number of padding tokens:(since
past_key_values_length
doesn't contain this information.)In general, we need to prepare
position_ids
inprepare_inputs_for_generation
, like what has been done inThis PR adds this for
XLMRobertaXLForCausalLM
(whoseprepare_inputs_for_generation
is already overwritten from the parent class)As a bonus:
is also no longer flaky (running 10000 times) while it was failing 5% of the time before this PR.