Update to Transformers v5#692
Merged
Merged
Conversation
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit 17f7785. Configure here.
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
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.

Note
High Risk
Core merge/load paths and MoE output formats changed for a major Transformers bump; incorrect conversion or optional-weight logic could silently drop or mis-merge expert weights.
Overview
Upgrades mergekit to Transformers 5 (
transformers>=5.0,<6.0,peft>=0.18.0) and adds aconversionlayer that uses Hugging Face’s checkpoint conversion registry to map legacy checkpoint keys to the v5 model layout (e.g. packedgate_up_proj/down_projfor MoE experts).Tensor loading and architecture inference now fall back to conversion when a weight name is missing on disk; auto-inference builds weight templates from the base model’s v5
state_dictand treats weights as present only if conversion (or a direct key) works across all merge inputs and every layer.Mixtral and Qwen3 MoE move from Python
ModuleArchitectureclasses to JSON definitions with v5 tensor names; MoE merge writers assemble per-expert sources and save via conversion instead of manualblock_sparse_moe/ per-expert MLP remapping. Glm4 MoE layer templates align with the same packed expert layout.Smaller changes:
no_init_weightsreplaces customNoInitin evolve; MoE router usesBitsAndBytesConfigfor 4/8-bit loads;mergekit-evolveis deprecated with a runtime warning.Reviewed by Cursor Bugbot for commit 0d59494. Bugbot is set up for automated code reviews on this repo. Configure here.