Пример #1
0
from ray.tune._structure_refactor import warn_structure_refactor
from ray.tune.search.nevergrad import *  # noqa: F401, F403

warn_structure_refactor(__name__, "ray.tune.search.nevergrad")
Пример #2
0
from ray.tune._structure_refactor import warn_structure_refactor
from ray.tune.search.variant_generator import *  # noqa: F401, F403

warn_structure_refactor(__name__, "ray.tune.search.variant_generator")
Пример #3
0
from ray.tune._structure_refactor import warn_structure_refactor
from ray.tune.execution.checkpoint_manager import *  # noqa: F401, F403

warn_structure_refactor(__name__, "ray.tune.execution.checkpoint_manager")
Пример #4
0
from ray.tune._structure_refactor import warn_structure_refactor
from ray.tune.trainable.session import *  # noqa: F401, F403

warn_structure_refactor(__name__, "ray.tune.trainable.session")
Пример #5
0
from ray.tune._structure_refactor import warn_structure_refactor
from ray.tune.trainable.function_trainable import (  # noqa: F401, F403
    FunctionTrainable as FunctionRunner, FuncCheckpointUtil, wrap_function,
)

warn_structure_refactor(
    "ray.tune.function_runner.FunctionRunner",
    "ray.tune.trainable.function_trainable.FunctionTrainable",
)
Пример #6
0
from ray.tune._structure_refactor import warn_structure_refactor
from ray.tune.trainable.util import *  # noqa: F401, F403

warn_structure_refactor(__name__, "ray.tune.trainable.util")
Пример #7
0
from ray.tune._structure_refactor import warn_structure_refactor
from ray.tune.search.hyperopt import *  # noqa: F401, F403

warn_structure_refactor(__name__, "ray.tune.search.hyperopt")
Пример #8
0
from ray.tune._structure_refactor import warn_structure_refactor
from ray.tune.execution.cluster_info import *  # noqa: F401, F403

warn_structure_refactor(__name__, "ray.tune.execution.cluster_info")
Пример #9
0
from ray.tune._structure_refactor import warn_structure_refactor
from ray.tune.search.bayesopt import *  # noqa: F401, F403

warn_structure_refactor(__name__, "ray.tune.search.bayesopt")
Пример #10
0
from ray.tune._structure_refactor import warn_structure_refactor
from ray.tune.experiment.trial import *  # noqa: F401, F403

warn_structure_refactor(__name__, "ray.tune.experiment.trial")
Пример #11
0
from ray.tune._structure_refactor import warn_structure_refactor
from ray.tune.search.basic_variant import *  # noqa: F401, F403

warn_structure_refactor(__name__, "ray.tune.search.basic_variant")
Пример #12
0
from ray.tune._structure_refactor import warn_structure_refactor
from ray.tune.search.sample import *  # noqa: F401, F403

# Needed for FLAML
from ray.tune.search.sample import _BackwardsCompatibleNumpyRng  # noqa: F401, F403

warn_structure_refactor(__name__, "ray.tune.search.sample")
Пример #13
0
from ray.tune._structure_refactor import warn_structure_refactor
from ray.tune.search.search_algorithm import *  # noqa: F401, F403

warn_structure_refactor(__name__, "ray.tune.search.search_algorithm")
from ray.tune._structure_refactor import warn_structure_refactor
from ray.tune.execution.insufficient_resources_manager import *  # noqa: F401, F403

warn_structure_refactor(__name__,
                        "ray.tune.execution.insufficient_resources_manager")
Пример #15
0
from ray.tune._structure_refactor import warn_structure_refactor
from ray.tune.search.dragonfly import *  # noqa: F401, F403

warn_structure_refactor(__name__, "ray.tune.search.dragonfly")
Пример #16
0
from ray.tune._structure_refactor import warn_structure_refactor
from ray.tune.execution.ray_trial_executor import *  # noqa: F401, F403

warn_structure_refactor(__name__, "ray.tune.execution.ray_trial_executor")
Пример #17
0
from ray.tune._structure_refactor import warn_structure_refactor
from ray.tune.search.optuna import *  # noqa: F401, F403

warn_structure_refactor(__name__, "ray.tune.search.optuna")
Пример #18
0
from ray.tune._structure_refactor import warn_structure_refactor
from ray.tune.execution.trial_runner import *  # noqa: F401, F403

warn_structure_refactor(__name__, "ray.tune.execution.trial_runner")
Пример #19
0
from ray.tune._structure_refactor import warn_structure_refactor
from ray.tune.experiment.config_parser import *  # noqa: F401, F403

warn_structure_refactor(__name__, "ray.tune.experiment.config_parser")
Пример #20
0
from ray.tune._structure_refactor import warn_structure_refactor
from ray.tune.search.util import *  # noqa: F401, F403

warn_structure_refactor(__name__, "ray.tune.search.util")
Пример #21
0
from ray.tune._structure_refactor import warn_structure_refactor
from ray.tune.execution.placement_groups import *  # noqa: F401, F403

warn_structure_refactor(__name__, "ray.tune.execution.placement_groups")
Пример #22
0
from ray.tune._structure_refactor import warn_structure_refactor
from ray.tune.search import (  # noqa: F401, F403
    UNDEFINED_SEARCH_SPACE, UNRESOLVED_SEARCH_SPACE, UNDEFINED_METRIC_MODE,
)
from ray.tune.search.searcher import Searcher  # noqa: F401, F403
from ray.tune.search.concurrency_limiter import ConcurrencyLimiter  # noqa: F401, F403

warn_structure_refactor(__name__, "ray.tune.search.searcher", direct=False)