Skip to content

Conversation

@HichTala
Copy link
Contributor

What does this PR do?

This pull request makes a targeted change to the model loading logic in modeling_utils.py to improve compatibility with timm backbones. Specifically, it ensures that when a model is configured to use a timm backbone with pretrained weights (use_pretrained_backbone=True), the backbone weights are not loaded while the model is still in meta device during from_pretrained().

Model initialization and configuration:

  • In from_pretrained, before model instantiation, if the config specifies both use_timm_backbone and use_pretrained_backbone, the code sets config.use_pretrained_backbone to False to defer loading pretrained timm backbone weights until after initialization.

Fixes # (issue)

Before submitting

  • This PR fixes a typo or improves the docs (you can dismiss the other checks if that's the case).
  • Did you read the contributor guideline,
    Pull Request section?
  • Was this discussed/approved via a Github issue or the forum? Please add a link
    to it if that's the case.
  • Did you make sure to update the documentation with your changes? Here are the
    documentation guidelines, and
    here are tips on formatting docstrings.
  • Did you write any new necessary tests?

Who can review?

@Rocketknight1 @qubvel @Cyrilvallez @NielsRogge @xenova

…h `from_pretrained` method of `PreTrainedModel` to make sure weights get loaded after the model is initialized
@Cyrilvallez
Copy link
Member

Hey @HichTala! Are you sure you are still facing the original issue in latest main? Loading has changed, and we do not use model.load_state_dict anymore!

@HichTala
Copy link
Contributor Author

HichTala commented Nov 20, 2025

Hi @Cyrilvallez! I just tested this again with the latest main, and the original issue is still present.

The problem is not related to load_state_dict itself. It comes from the fact that during from_pretrained, when a model uses a timm backbone with use_pretrained_backbone=True, the model is still instantiated on meta devices, but the timm pretrained backbone weights are already being loaded at that stage. This causes all the warnings from timm, and then, once from_pretrained continues, those backbone weights are overwritten anyway by the Hugging Face checkpoint loading logic.

This PR simply removes loading the timm backbone weights until after the model is fully materialized in from_pretrained method.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants