mirror of
https://github.com/vale981/ray
synced 2025-03-06 02:21:39 -05:00
14 lines
437 B
Python
14 lines
437 B
Python
# Deprecated module: Use ray.rllib.env.wrappers.recsim instead!
|
|
from ray.rllib.env.wrappers.recsim import ( # noqa: F401
|
|
make_recsim_env,
|
|
MultiDiscreteToDiscreteActionWrapper,
|
|
RecSimObservationSpaceWrapper,
|
|
RecSimResetWrapper,
|
|
)
|
|
from ray.rllib.utils.deprecation import deprecation_warning
|
|
|
|
deprecation_warning(
|
|
old="ray.rllib.env.wrappers.recsim_wrapper",
|
|
new="ray.rllib.env.wrappers.recsim",
|
|
error=False,
|
|
)
|