1
0
Fork 0
mirror of https://github.com/vale981/ray synced 2025-03-12 22:26:39 -04:00
ray/rllib/agents/trainer_config.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
325 B
Python
Raw Normal View History

from ray.rllib.algorithms.algorithm_config import ( # noqa
AlgorithmConfig as TrainerConfig,
)
from ray.rllib.utils.deprecation import deprecation_warning
deprecation_warning(
old="ray.rllib.agents.trainer_config::TrainerConfig",
new="ray.rllib.algorithms.algorithm_config::AlgorithmConfig",
error=False,
)