-
Notifications
You must be signed in to change notification settings - Fork 10
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
Set 0.5.1 release with bumped dependencies #96
Merged
Merged
Conversation
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
- `transformers` 4.45.2 includes Llama 3.1, MLlama, and much more (see release notes at https://github.com/huggingface/transformers/releases/tag/v4.45.0) - `diffusers` 0.31.0 includes Stable Diffusion 3.5 and much more (see release notes at https://github.com/huggingface/diffusers/releases/tag/v0.31.0) - `huggingface_hub` 0.26.1 bumped to avoid issues with deprecated `cached_download` affecting older versions of `diffusers` i.e. 0.30.0 or below, so it was a sensible dependency - Also bumped `torch` 2.3.1, `peft` 0.13.2, `accelerate` 1.0.1 stable release, and `sentence-transformers` 3.2.1
philschmid
approved these changes
Oct 24, 2024
Previous `diffusers` versions shouldn't be installed, but since the `huggingface_hub` dependency below 0.26 is still compatible with the current and previous releases of `transformers`, `diffusers`, etc. then pining `huggingface_hub<0.26` makes the most sense atm
According to SemVer, changes that do not affect the public-facing API and are just a maintenance update fall under the PATCH category, not the MINOR category
alvarobartt
changed the title
Set 0.6.0 release with bumped dependencies
Set 0.5.1 release with bumped dependencies
Oct 28, 2024
philschmid
reviewed
Oct 29, 2024
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.
one comment
Co-authored-by: Philipp Schmid <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Description
This PR sets the 0.5.1 version for the
huggingface-inference-toolkit
and bumps some of the dependencies as of the recent releases, including the ping of thehuggingface_hub
that deprecates thecached_download
affectingdiffusers<0.31.0
.Some of the version bumps are described below:
transformers
4.45.2 includes Llama 3.2, MLlama, and much more (see release notes at https://github.com/huggingface/transformers/releases/tag/v4.45.0)diffusers
0.31.0 includes Stable Diffusion 3.5 and much more (see release notes at https://github.com/huggingface/diffusers/releases/tag/v0.31.0)huggingface_hub
0.26.2 bumped to avoid issues with deprecatedcached_download
affecting older versions ofdiffusers
i.e. 0.30.0 or below, so it was a sensible dependencytorch
2.3.1,peft
0.13.2,accelerate
1.0.1 stable release, andsentence-transformers
3.2.1Additionally, this PR also extends support for newer models such as Llama 3.2, MLlama, Stable Diffusion 3.5, and some more; due to the dependency bump.