Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions python/ray/tune/result.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
# (Auto-filled) The pid of the training process.
PID = "pid"

# Number of timesteps in this iteration.
# Number of episodes in this iteration.
EPISODES_THIS_ITER = "episodes_this_iter"

# (Optional/Auto-filled) Accumulated time in seconds for this experiment.
# (Optional/Auto-filled) Accumulated number of episodes for this experiment.
EPISODES_TOTAL = "episodes_total"

# Number of timesteps in this iteration.
Expand All @@ -35,7 +35,7 @@
# (Auto-filled) Accumulated time in seconds for this entire experiment.
TIME_TOTAL_S = "time_total_s"

# (Auto-filled) The index of thistraining iteration.
# (Auto-filled) The index of this training iteration.
TRAINING_ITERATION = "training_iteration"

# Where Tune writes result files by default
Expand Down