ray/rllib/execution/buffers/__init__.py
2022-05-17 13:43:49 +02:00

9 lines
353 B
Python

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,
)