You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've encountered an import error when trying to use the eli5 library with the latest version of scikit-learn (1.2+). The error message is as follows: ImportError: cannot import name 'if_delegate_has_method' from 'sklearn.utils.metaestimators' (path_to_sklearn\utils\metaestimators.py)
The if_delegate_has_method decorator has been deprecated and removed from scikit-learn in version 1.2, and it has been replaced by the available_if decorator. This issue arises when attempting to use eli5 for permutation importance with a trained model.
Steps to Reproduce:
Install the latest versions of scikit-learn and eli5.
Attempt to import eli5 and use PermutationImportance.
Observe the ImportError.
Proposed Solution:
Update the import statements in the eli5 library to use the new available_if decorator from scikit-learn's metaestimators module.
I've encountered an import error when trying to use the eli5 library with the latest version of scikit-learn (1.2+). The error message is as follows:
ImportError: cannot import name 'if_delegate_has_method' from 'sklearn.utils.metaestimators' (path_to_sklearn\utils\metaestimators.py)
The if_delegate_has_method decorator has been deprecated and removed from scikit-learn in version 1.2, and it has been replaced by the available_if decorator. This issue arises when attempting to use eli5 for permutation importance with a trained model.
Steps to Reproduce:
Install the latest versions of scikit-learn and eli5.
Attempt to import eli5 and use PermutationImportance.
Observe the ImportError.
Proposed Solution:
Update the import statements in the eli5 library to use the new available_if decorator from scikit-learn's metaestimators module.
Environment:
Python version: 3.x
scikit-learn version: 1.2+
eli5 version: latest
The text was updated successfully, but these errors were encountered: