-
Notifications
You must be signed in to change notification settings - Fork 5.9k
[Pytorch] Pytorch only schedulers #534
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
Merged
Merged
Changes from all commits
Commits
Show all changes
41 commits
Select commit
Hold shift + click to select a range
479e0d2
pytorch only schedulers
kashif 3cc8796
fix style
kashif 0b1fb7c
Merge branch 'main' into remove-numpy
kashif c1bb957
remove match_shape
kashif 6818e9a
pytorch only ddpm
kashif 66d48b8
remove SchedulerMixin
kashif f656c69
remove numpy from karras_ve
kashif 66febf1
fix types
kashif d6cce91
remove numpy from lms_discrete
kashif 1bb1716
remove numpy from pndm
kashif bde8899
fix typo
kashif ceb0b8a
remove mixin and numpy from sde_vp and ve
kashif 7aa375f
remove remaining tensor_format
kashif 5eb3763
fix style
kashif a56ed1f
sigmas has to be torch tensor
kashif 7a86f0c
removed set_format in readme
kashif ee0185c
remove set format from docs
kashif 7e214e9
remove set_format from pipelines
kashif 5a608dc
update tests
kashif 0cf700a
Merge branch 'main' into remove-numpy
kashif 9014aee
fix typo
kashif 03dd287
continue to use mixin
kashif 7822977
fix imports
kashif 4c91e36
removed unsed imports
kashif 32c3d57
match shape instead of assuming image shapes
kashif 3f484f3
remove import typo
kashif 1bf4227
Merge branch 'main' into remove-numpy
kashif 5de5c5c
Merge branch 'main' into remove-numpy
kashif d94787b
Merge branch 'main' into remove-numpy
kashif 1b5fbc0
update call to add_noise
kashif 0c8e83f
use math instead of numpy
kashif a4e80d8
fix t_index
kashif 6485645
removed commented out numpy tests
kashif f0b7aba
timesteps needs to be discrete
kashif 54a4aea
Merge branch 'main' into remove-numpy
kashif 2cb7a33
cast timesteps to int in flax scheduler too
kashif 9cacd3f
fix device mismatch issue
kashif 98458cb
Merge branch 'main' into remove-numpy
kashif 9bda654
Merge branch 'main' of https://github.com/huggingface/diffusers into …
patrickvonplaten 4e70c10
small fix
patrickvonplaten b2dbd79
Update src/diffusers/schedulers/scheduling_pndm.py
patrickvonplaten 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
nice!