mirror of
https://github.com/vale981/ray
synced 2025-03-06 02:21:39 -05:00
12 lines
369 B
Python
12 lines
369 B
Python
from ray.rllib.env.wrappers.group_agents_wrapper import GROUP_REWARDS as GR, \
|
|
GROUP_INFO as GI
|
|
from ray.rllib.utils.deprecation import deprecation_warning
|
|
|
|
deprecation_warning(
|
|
old="ray.rllib.env.constants.GROUP_[REWARDS|INFO]",
|
|
new="ray.rllib.env.wrappers.group_agents_wrapper.GROUP_[REWARDS|INFO]",
|
|
error=False,
|
|
)
|
|
|
|
GROUP_REWARDS = GR
|
|
GROUP_INFO = GI
|