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