Fix: restore requires_grad after _save_converted_model to work around peft inject_adapter side effect#9452
Merged
Jintao-Huang merged 2 commits intoMay 31, 2026
Conversation
…t_adapter side effect
Contributor
There was a problem hiding this comment.
Code Review
This pull request modifies swift/trainers/mixin.py to save and restore the requires_grad state of model parameters during model conversion, protecting against side effects in peft >= 0.18.1 where active adapters are incorrectly frozen. There are no review comments to evaluate, so no additional feedback is provided.
Jintao-Huang
approved these changes
May 30, 2026
Collaborator
|
thanks! |
Jintao-Huang
pushed a commit
that referenced
this pull request
May 31, 2026
… peft inject_adapter side effect (#9452)
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 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.
Problem
When using PiSSA/OLoRA/LoRA-GA with peft >= 0.18.1, the first
save_checkpointfreezes the training adapter's parameters due to a side effect in peft'sinject_adapter. After saving,grad_normdrops to 0 and training effectively stops.Trigger path:
_save_converted_model→model.save_pretrained(path_initial_model_for_weight_conversion=...)→save_mutated_as_lora→load_adapter→inject_adapter→ freezes active adapterRoot cause: peft 0.18.1 introduced a regression where
inject_adapterpasses the new adapter'sinference_mode=Truetoset_adapter(self.active_adapters, inference_mode=True), which incorrectly setsrequires_grad=Falseon the training adapter. See huggingface/peft#3290 for the upstream fix.Fix
Save and restore
requires_gradstate of all parameters around thesave_pretrainedcall in_save_converted_model. This applies to both thepissa/oloraandlora-gabranches.This is a defensive workaround that protects against the peft side effect without depending on any specific peft version. Once the upstream peft fix is merged and adopted, this workaround becomes a no-op safety net.
Related
13fa0aea(PR fix app-ui #2765)