mirror of
https://github.com/vale981/ray
synced 2025-03-06 02:21:39 -05:00
13 lines
331 B
Python
13 lines
331 B
Python
from ray.rllib.algorithms.callbacks import ( # noqa
|
|
DefaultCallbacks,
|
|
MemoryTrackingCallbacks,
|
|
MultiCallbacks,
|
|
RE3UpdateCallbacks,
|
|
)
|
|
from ray.rllib.utils.deprecation import deprecation_warning
|
|
|
|
deprecation_warning(
|
|
old="ray.rllib.agents.callbacks",
|
|
new="ray.rllib.algorithms.callbacks",
|
|
error=False,
|
|
)
|