[model deprecations] Define new version-based model deprecation/deletions with user warnings/exceptions #41315
+102
−33
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?
PR 1 out of 3 regarding model deprecation/deletions for v5
We now define a new
{model type: last version where it was supported}
mapping, which we use to:This should improve our messaging to the users and allow us to stop investing energy in low-usage architectures.
🤗 inspired by our vllm friends 🤗
Follow-up PRs:
deprecated
folder (most of them don't work inmain
in any case 👀 ). If it's not too complex, define import-time exceptions for the deleted classes (e.g. when a user tries to callfrom transformers import XXXModel
,XXXModel
being a deleted class).