Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix import order in shap.py #69

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions optuna_integration/shap.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,10 @@


with try_import() as _imports:
from sklearn.ensemble import RandomForestRegressor

from shap import TreeExplainer

Check warning on line 21 in optuna_integration/shap.py

View workflow job for this annotation

GitHub Actions / reviewdog

[formatters] reported by reviewdog 🐶 Raw Output: optuna_integration/shap.py:21:- from shap import TreeExplainer
from sklearn.ensemble import RandomForestRegressor


Check warning on line 24 in optuna_integration/shap.py

View workflow job for this annotation

GitHub Actions / reviewdog

[formatters] reported by reviewdog 🐶 Raw Output: optuna_integration/shap.py:23:+ from shap import TreeExplainer optuna_integration/shap.py:24:+
@experimental_class("3.0.0")
class ShapleyImportanceEvaluator(BaseImportanceEvaluator):
"""Shapley (SHAP) parameter importance evaluator.
Expand Down
Loading