-
Notifications
You must be signed in to change notification settings - Fork 5
[model] feat: bump to transformers v5.2.0 + VeOmni a4ed599 #29
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
Changes from all commits
66e0881
e7e4f88
103ef48
d5f6ffb
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -27,7 +27,7 @@ dev = [ | |
| "pre-commit" | ||
| ] | ||
| vllm = [ | ||
| "vllm==0.18.0", | ||
| "vllm==0.19.1", | ||
| ] | ||
| verl = [ | ||
| "verl", | ||
|
|
@@ -37,6 +37,11 @@ verl = [ | |
| ] | ||
| veomni = [ | ||
| "veomni", | ||
| # VeOmni's default install pins transformers==5.2.0 (via its | ||
| # `transformers-stable` dependency group). Mirror that pin here so vexact | ||
| # users picking up the veomni extra resolve to the same version VeOmni | ||
| # tests/develops against. | ||
| "transformers==5.2.0", | ||
| ] | ||
|
|
||
| [build-system] | ||
|
|
@@ -125,7 +130,7 @@ known-third-party = [ | |
| verl = { git = "https://github.com/verl-project/verl.git", rev = "61f29997fb026a5a269dafccfe2f3bb800e32ef4" } | ||
| # To work on verl locally, point this at `{ path = "./verl", editable = true }`. | ||
| # To work on VeOmni locally, point this at `{ path = "./VeOmni", editable = true }`. | ||
| veomni = { git = "https://github.com/ByteDance-Seed/VeOmni.git", rev = "58759e78015ad429507079aa443215e3c515364f" } | ||
| veomni = { git = "https://github.com/ByteDance-Seed/VeOmni.git", rev = "a4ed599119afb21f5e559f15e95635f0edbbc5c6" } | ||
| torch = [ | ||
| { index = "pytorch", extra = "gpu" }, | ||
| ] | ||
|
|
@@ -150,4 +155,9 @@ no-build-isolation-package = ["flash-attn"] | |
| environments = ["sys_platform == 'linux'"] | ||
| override-dependencies = [ | ||
| "opencv-python-headless<4.13.0", | ||
| # vllm 0.19.1's metadata still excludes transformers 5.0.*-5.4.* (only | ||
| # 5.5.1+ is whitelisted), but VeOmni pins transformers==5.2.0. Override | ||
| # vllm's conservative ceiling so the `vllm` and `veomni` extras can | ||
| # coexist; vllm 0.19.1 runs fine against transformers 5.2 in practice. | ||
| "transformers==5.2.0", | ||
|
Comment on lines
+158
to
+162
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Forcing Additionally, this override makes the pin global for all |
||
| ] | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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.
The comment here states that the pin only hits users of the
veomniextra. However, due to the global override added intool.uv.override-dependencies(line 162), this version is actually enforced for alluvresolutions in this project. The pin in the extra is effectively redundant foruvusers but remains relevant forpipusers. Please update the comment to reflect the actual behavior underuv.