-
Notifications
You must be signed in to change notification settings - Fork 486
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
Enable the export of only one decoder #1257
Merged
Merged
Changes from 81 commits
Commits
Show all changes
84 commits
Select commit
Hold shift + click to select a range
41b8f98
ONNX export decoder model refactorization
echarlaix f91a018
fix style
echarlaix 4ce5fbe
fix index
echarlaix 552eebc
merge main in branch
echarlaix aa40ba4
Merge branch 'main' into refactorization-decoder-ort
echarlaix 9fa05e4
fix IO bindings
echarlaix 3a0d76a
format
echarlaix b0aa234
enable mpt support
echarlaix dfabefd
format
echarlaix 35df7bd
add trust remote code
echarlaix 469edc8
fix test
echarlaix 77cc527
format
echarlaix 4f72a7e
rm redundant
echarlaix 599c31c
format
echarlaix dac2376
merge main in branch
echarlaix c13b645
fix
echarlaix 0e83cd1
Merge branch 'main' into refactorization-decoder-ort
echarlaix 1f81f0b
Merge branch 'main' into refactorization-decoder-ort
echarlaix a0d0802
fix quantization
echarlaix 7f65ce1
add test
echarlaix 2840b81
format
echarlaix 5fa7b20
format
echarlaix 8011982
fix optimization
echarlaix b643308
fix opitmization
echarlaix ca9ce30
fix compatibility with legacy models
echarlaix 144753a
format
echarlaix 4ee6167
fix legacy models
echarlaix f2d0f84
format
echarlaix 3ff719a
fix style
echarlaix d794141
format
echarlaix a34a16e
add export to main_export
echarlaix dfe7e5e
add legacy to ONNX export
echarlaix 8d102f7
fix test
echarlaix 62b8974
fix
echarlaix b8e18c3
rm unused import
echarlaix 819691e
patch model to fix causal lm generation
echarlaix e259670
rm commen
echarlaix 2f26201
add no psot process
echarlaix bed73d4
merge main in branch
echarlaix 6d8acb4
fix
echarlaix 52c1745
remove bloom caching
echarlaix 1e9ba7e
fix
echarlaix 4b68caa
format
echarlaix e5fd9f8
fix dynamic axis for position ids
echarlaix addad92
fix external data
echarlaix 2c063c0
format
echarlaix 1b47093
test
echarlaix 35caaf2
test
echarlaix 725857b
add model patcher
echarlaix 46b26b5
format
echarlaix 33957af
fix
echarlaix c2ec382
fix bart model patcher
echarlaix d86bce6
format
echarlaix be836b5
format
echarlaix b05f599
fix model patcher for opt models
echarlaix 26d97e8
fix format
echarlaix 4b6c3ed
add tmp onnxruntime max version
echarlaix 615a219
add test
echarlaix b3525f8
format
echarlaix e0e2bae
tmp fix onnxruntime max version
echarlaix cbc935f
format
echarlaix 624d91d
add test
echarlaix c558450
fix ort docker
echarlaix e72526d
fix format
echarlaix 7926999
merge main in branch
echarlaix 44ef0f1
add test
echarlaix ed8e74f
fix bart model patcher
echarlaix c13a170
raise when unsupported model
echarlaix 524b668
add cached file
echarlaix 8951ddf
minor
echarlaix 2491ef3
add position warning
echarlaix 0ab6e61
fixes
echarlaix 1a7d491
enable post process after export to remove tied weights
echarlaix cd8d4be
comment
echarlaix e6de5e7
remove test
echarlaix 4a32f7a
fix test
echarlaix a51686e
modify model
echarlaix e2f8a3b
remove deprecated use_merged in test
echarlaix 52ce2d7
Merge branch 'main' into refactorization-decoder-ort
echarlaix b76f43a
Add mistral model patcher
echarlaix 5b3d445
fix test
echarlaix 5406f95
add slow test
echarlaix 52e0c69
add workflow
echarlaix 8883323
fix
echarlaix 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
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.
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.
We could merge the
no_position_ids
andlegacy
as they correspond to the previous export behavior andno_position_ids
is not in a release yet. 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.
Yes good idea, will merge both