-
Notifications
You must be signed in to change notification settings - Fork 27.5k
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
Move eos_token_id
to stopping criteria
#29459
Merged
Merged
Changes from all commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
584de18
add eos stopping criteria
zucchini-nlp 79a47c4
minor fix
zucchini-nlp 6c93f8b
Update tests/generation/test_stopping_criteria.py
zucchini-nlp f59b83f
check eos is not None and fix tests
zucchini-nlp 8ebad2d
make style and fixup
zucchini-nlp 3e2507b
Update src/transformers/generation/stopping_criteria.py
zucchini-nlp b77b6ab
Update tests/generation/test_utils.py
zucchini-nlp edc76df
Update tests/generation/test_utils.py
zucchini-nlp f71a687
Update src/transformers/generation/__init__.py
zucchini-nlp 387be0e
Update src/transformers/generation/stopping_criteria.py
zucchini-nlp 14ece04
Update src/transformers/generation/stopping_criteria.py
zucchini-nlp bc3eea9
Update src/transformers/generation/stopping_criteria.py
zucchini-nlp 7518aea
camel case everywhere
zucchini-nlp 8e5ec57
call stopping criteria list for candidate ids
zucchini-nlp 2544d12
make style and fixup
zucchini-nlp 12acbc4
Empty commit
zucchini-nlp 1107673
Empty commit to pass flaky test
zucchini-nlp 1ffc554
set max length in PromptLookupCandidateGenerator
zucchini-nlp ca0a414
Merge 'upstream/main' into stopping_criteria
zucchini-nlp ce093c1
Update src/transformers/generation/utils.py
zucchini-nlp aa7fae4
Merge remote-tracking branch 'upstream/main' into stopping_crtiteria
zucchini-nlp 5375d97
lets fix this typo in docs
zucchini-nlp d103d29
Merge remote-tracking branch 'upstream/main' into stopping_crtiteria
zucchini-nlp 9f59abb
Merge remote-tracking branch 'upstream/main' into stopping_crtiteria
zucchini-nlp 48f33fc
Update src/transformers/generation/utils.py
zucchini-nlp 801af07
Update src/transformers/generation/utils.py
zucchini-nlp a385c6d
Merge remote-tracking branch 'upstream/main' into stopping_crtiteria
zucchini-nlp 7c00bb1
update PR
zucchini-nlp 530064d
empty commit
zucchini-nlp File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
would be nice to also support list of lists ? To have stopping tokens (if the eos is
["<","eos",">"]
)There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm, is it really true for existing models to have eos tokens as a sequence? I guess you are referring to custom eos tokens, when users want to stop at "" but they haven't trained the model with "" as special token. If that's the case, there is
StopStringsCriteria
PR coming or users are free to write their custom criteria@gante wdyt?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, the case where we want to stop on a string will be covered by #28932 (and is way more complex)
This PR is exclusively to port the existing EOS logic into its own stopping criteria :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Right I forgot it was being covered