-
Notifications
You must be signed in to change notification settings - Fork 6.1k
Integration of from_pretrained
and from_single_file
#10208
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
Open
suzukimain
wants to merge
52
commits into
huggingface:main
Choose a base branch
from
suzukimain:loading_method_integration
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+545
−96
Open
Changes from all commits
Commits
Show all changes
52 commits
Select commit
Hold shift + click to select a range
d8dc461
update
suzukimain b239d4f
update
suzukimain abf20e1
update
suzukimain 67b1f40
update
suzukimain 4132129
update
suzukimain ef77efb
Added pipeline mappings for loading a single file checkpoint
suzukimain 349726f
update
suzukimain 5e9d485
fix
suzukimain 2475b86
update
suzukimain e791d62
Merge branch 'huggingface:main' into load_Method_Integration
suzukimain 4788002
fix
suzukimain fdf5020
fix
suzukimain b9449df
fix
suzukimain 8c25f96
Fixed duplicate checkpoint loading
suzukimain cb525df
Merge branch 'main' into loading_method_integration
suzukimain f545353
Merge branch 'main' into loading_method_integration
suzukimain ef96367
Merge branch 'main' into loading_method_integration
suzukimain 891b11c
Code formatting
suzukimain e072f90
Merge branch 'main' of https://github.com/huggingface/diffusers into …
suzukimain 7b22b18
fix
suzukimain eb09cf0
Add keys and sort alphabetically
suzukimain b9b62ea
Merge branch 'main' into loading_method_integration
suzukimain ca764d4
Merge branch 'main' into loading_method_integration
suzukimain 0874ab6
Merge branch 'main' of https://github.com/huggingface/diffusers into …
suzukimain 6488693
Added `flux-depth`, `flux-fill`, and `mochi-1-preview` to the pipelin…
suzukimain 970a7ff
Merge branch 'main' of https://github.com/huggingface/diffusers into …
suzukimain 75e510d
update
suzukimain 118ce7f
Merge branch 'main' into loading_method_integration
suzukimain 0e41022
update
suzukimain 384bd7f
update
suzukimain 56403a6
update
suzukimain e9a48fb
update
suzukimain 0ec85e0
update
suzukimain 41f960f
update
suzukimain 8c10847
update
suzukimain 6a79268
fix
suzukimain 8e845c2
make quality
suzukimain 6b252aa
update
suzukimain d10e3f1
update
suzukimain ceae059
update
suzukimain 18fce79
update
suzukimain a5604da
update
suzukimain 69ba240
update
suzukimain d82b9a9
update
suzukimain b0f18ae
make quality
suzukimain 8e58877
Merge https://github.com/huggingface/diffusers into loading_method_in…
suzukimain 32ce3a6
Merge branch 'main' of https://github.com/huggingface/diffusers into …
suzukimain bf0f979
Integrate from_pretrained with from_single_file functionality
suzukimain 0a7aa0e
Merge branch 'main' of https://github.com/huggingface/diffusers into …
suzukimain 6b41c16
Merge branch 'main' of https://github.com/huggingface/diffusers into …
suzukimain b480850
Update pipeline mapping
suzukimain 2f7a245
Fix and make quality
suzukimain 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
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.
If you don't pass the class_name when loading a single file checkpoint in
DiffusionPipeline
, it will result in a TypeError.