Skip to content

Commit

Permalink
Introduce early detection for dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
y0z committed Nov 15, 2024
1 parent d4997d9 commit 3323b0f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions package/samplers/auto_sampler/_sampler.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
from typing import Any
from typing import TYPE_CHECKING

import cmaes as _ # NOQA
from optuna.distributions import CategoricalDistribution
from optuna.logging import get_logger
from optuna.samplers import BaseSampler
Expand All @@ -18,6 +19,8 @@
from optuna.samplers._lazy_random_state import LazyRandomState
from optuna.search_space import IntersectionSearchSpace
from optuna.trial import TrialState
import scipy as _ # NOQA
import torch as _ # NOQA


if TYPE_CHECKING:
Expand Down

0 comments on commit 3323b0f

Please sign in to comment.