mirror of
https://github.com/vale981/ray
synced 2025-03-06 10:31:39 -05:00
16 lines
385 B
Python
16 lines
385 B
Python
![]() |
# info key for the individual rewards of an agent, for example:
|
||
|
# info: {
|
||
|
# group_1: {
|
||
|
# _group_rewards: [5, -1, 1], # 3 agents in this group
|
||
|
# }
|
||
|
# }
|
||
|
GROUP_REWARDS = "_group_rewards"
|
||
|
|
||
|
# info key for the individual infos of an agent, for example:
|
||
|
# info: {
|
||
|
# group_1: {
|
||
|
# _group_infos: [{"foo": ...}, {}], # 2 agents in this group
|
||
|
# }
|
||
|
# }
|
||
|
GROUP_INFO = "_group_info"
|