mirror of
https://github.com/vale981/ray
synced 2025-03-06 18:41:40 -05:00
11 lines
326 B
Python
11 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"
|
|
])
|