Fix model saving corruption for dynamically untied embeddings#45135
Closed
Cursx wants to merge 2 commits intohuggingface:mainfrom
Closed
Fix model saving corruption for dynamically untied embeddings#45135Cursx wants to merge 2 commits intohuggingface:mainfrom
Cursx wants to merge 2 commits intohuggingface:mainfrom
Conversation
087f84e to
e10c8f3
Compare
…re independently modified outside of Transformers (e.g., via PEFT)
Contributor
|
View the CircleCI Test Summary for this PR: https://huggingface.co/spaces/transformers-community/circle-ci-viz?pr=45135&sha=458cc1 |
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.
What does this PR do?
Fixes an issue where PEFT adapters applied independently to tied embeddings (
embed_tokensand lm_head) cause silent model corruption upon reloading viaAutoModelForCausalLM.from_pretrained().Root Cause:
When embeddings are untied dynamically during runtime (e.g., vocabulary resizing and independent PEFT merging), their tensor memory storage diverges.
PreTrainedModel.save_pretrained()correctly saves both parameter tensors because remove_tied_weights_from_state_dict() sees they don't share identical storage. However, the model configuration savestie_word_embeddings = True. Upon reloading, from_pretrained() seestie_word_embeddings=Trueand aggressively re-ties the two embeddings by overwriting one parameter with the other, effectively destroying the independent delta weights.Fix:
Included a check in save_pretrained(): if
config.tie_word_embeddingsisTruebutinput_embeddings.weight.data_ptr() != output_embeddings.weight.data_ptr(), it automatically flipsmodel.config.tie_word_embeddingstoFalsebefore saving the configuration mapping, preventing silent destruction on loading.Fixes # #45127
Code Agent Policy
The Transformers repo is currently being overwhelmed by a large number of PRs and issue comments written by
code agents. We are currently bottlenecked by our ability to review and respond to them. As a result,
we ask that new users do not submit pure code agent PRs at this time.
You may use code agents in drafting or to help you diagnose issues. We'd also ask autonomous "OpenClaw"-like agents
not to open any PRs or issues for the moment.
PRs that appear to be fully agent-written will probably be closed without review, and we may block users who do this
repeatedly or maliciously.
This is a rapidly-evolving situation that's causing significant shockwaves in the open-source community. As a result,
this policy is likely to be updated regularly in the near future. For more information, please read
CONTRIBUTING.md.Before submitting
Pull Request section?
to it if that's the case.
documentation guidelines, and
here are tips on formatting docstrings.
(Note: A minimal reproduction script is provided below to easily test and validate the fix, as it requires mocking PEFT adaptation)
Reproduction Script
Click to view minimal repro (repro.py)
Who can review?
@BenjaminBossan @githubnemo