fix: replace check_model_inputs with merge_with_config_defaults + capture_outputs for transformers 5.2#15
Merged
ZhiyuanChen merged 1 commit intomasterfrom Feb 25, 2026
Conversation
…ture_outputs for transformers 5.2 In transformers 5.2, `check_model_inputs` was removed from `transformers.utils.generic` and split into two separate decorators: - `merge_with_config_defaults` (from `transformers.utils.generic`) - `capture_outputs` (from `transformers.utils.output_capturing`) This updates all 12 model files to use the new API. https://claude.ai/code/session_012Q6dbgKtUaoPgb7yWU3e6g
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.
In transformers 5.2,
check_model_inputswas removed fromtransformers.utils.genericand split into two separate decorators:
merge_with_config_defaults(fromtransformers.utils.generic)capture_outputs(fromtransformers.utils.output_capturing)This updates all 12 model files to use the new API.
https://claude.ai/code/session_012Q6dbgKtUaoPgb7yWU3e6g