ray/rllib/execution/buffers/__init__.py

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

10 lines
353 B
Python
Raw Normal View History

from ray.rllib.utils.deprecation import deprecation_warning
deprecation_warning(
old="ray.rllib.execution.buffers",
new="ray.rllib.utils.replay_buffers",
help="RLlib's ReplayBuffer API has changed. Apart from the replay buffers moving, "
"some have altered behaviour. Please refer to the docs for more information.",
error=False,
)