mirror of
https://github.com/vale981/ray
synced 2025-03-08 19:41:38 -05:00
8 lines
216 B
Python
8 lines
216 B
Python
![]() |
import collections
|
||
|
|
||
|
# Define this in its own file, see #5125
|
||
|
RolloutMetrics = collections.namedtuple("RolloutMetrics", [
|
||
|
"episode_length", "episode_reward", "agent_rewards", "custom_metrics",
|
||
|
"perf_stats"
|
||
|
])
|