-
Notifications
You must be signed in to change notification settings - Fork 182
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #169 from roboflow/deps/transformers/qwen
deps: 📦 update transformers version constraints and better qwen2.5 VL support for installation
- Loading branch information
Showing
5 changed files
with
107 additions
and
78 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" | |
|
||
[project] | ||
name = "maestro" | ||
version = "1.1.0rc1" | ||
version = "1.1.0rc2" | ||
description = "Streamline the fine-tuning process for vision-language models like PaliGemma 2, Florence-2, and Qwen2.5-VL." | ||
authors = [ | ||
{name = "Piotr Skalski", email = "[email protected]"} | ||
|
@@ -79,16 +79,15 @@ florence_2 = [ | |
paligemma_2 = [ | ||
"peft>=0.12", | ||
"torch>=2.4.0", | ||
"transformers<4.49.0", | ||
"transformers>=4.48.3", | ||
"bitsandbytes>=0.45.0" | ||
] | ||
qwen_2_5_vl = [ | ||
"accelerate>=1.2.1", | ||
"peft>=0.12", | ||
"torch>=2.4.0", | ||
"torchvision>=0.20.0", | ||
# PyPi doesn't allow git repo packages; uncomment when transformers release support for Qwen2.5-VL | ||
# "transformers @ git+https://github.com/huggingface/transformers", | ||
"transformers>=4.49.0", | ||
"bitsandbytes>=0.45.0", | ||
"qwen-vl-utils>=0.0.8" | ||
] | ||
|