Skip to content

Commit

Permalink
Fix for flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
cross32768 committed Sep 25, 2023
1 parent 9ab09c2 commit ea3085e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
9 changes: 5 additions & 4 deletions optuna/importance/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,11 @@ def get_param_importances(
:class:`~optuna.importance.FanovaImportanceEvaluator`.
.. note::
This class takes over 1 minute when given a study that contains 1000+ trials.
We published `optuna-fast-fanova <https://github.com/optuna/optuna-fast-fanova>`_ library,
that is a Cython accelerated fANOVA implementation. By using it, you can get hyperparameter
importances within a few seconds.
:class:`~optuna.importance.FanovaImportanceEvaluator` takes over 1 minute
when given a study that contains 1000+ trials. We published
`optuna-fast-fanova <https://github.com/optuna/optuna-fast-fanova>`_ library,
that is a Cython accelerated fANOVA implementation.
By using it, you can get hyperparameter importances within a few seconds.
params:
A list of names of parameters to assess.
Expand Down
9 changes: 5 additions & 4 deletions optuna/visualization/_param_importances.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,10 +115,11 @@ def objective(trial):
:class:`~optuna.importance.FanovaImportanceEvaluator`.
.. note::
This class takes over 1 minute when given a study that contains 1000+ trials.
We published `optuna-fast-fanova <https://github.com/optuna/optuna-fast-fanova>`_ library,
that is a Cython accelerated fANOVA implementation. By using it, you can get hyperparameter
importances within a few seconds.
:class:`~optuna.importance.FanovaImportanceEvaluator` takes over 1 minute
when given a study that contains 1000+ trials. We published
`optuna-fast-fanova <https://github.com/optuna/optuna-fast-fanova>`_ library,
that is a Cython accelerated fANOVA implementation.
By using it, you can get hyperparameter importances within a few seconds.
params:
A list of names of parameters to assess.
Expand Down

0 comments on commit ea3085e

Please sign in to comment.