Fix: restore requires_grad after _save_converted_model to work around peft inject_adapter side effect#1
Merged
Conversation
…t_adapter side effect
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 modelscope/ms-swift#2765)