ray/rllib/agents/mock.py

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

14 lines
291 B
Python
Raw Normal View History

from ray.rllib.algorithms.mock import ( # noqa
_MockTrainer,
_ParameterTuningTrainer,
_SigmoidFakeData,
)
from ray.rllib.utils.deprecation import deprecation_warning
deprecation_warning(
old="ray.rllib.agents.mock",
new="ray.rllib.algorithms.mock",
error=False,
)