From 4d8cfc0bf50b5830cfab04ad5c247e85ffba9ed8 Mon Sep 17 00:00:00 2001 From: Praveen Palanisamy <4770482+praveen-palanisamy@users.noreply.github.com> Date: Tue, 16 Oct 2018 14:07:53 -0400 Subject: [PATCH] [tune] Fix (some more) misleading comments in tune/results.py (#3068) ## What do these changes do? Fix the misleading comments in code for: - `EPISODES_THIS_ITER` - `EPISODES_TOTAL` Had noted it before and planned to fix it along with some other changes but seemed very relevant to stay next to #3058 so sending this now. --- python/ray/tune/result.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/python/ray/tune/result.py b/python/ray/tune/result.py index c75ba77e1..a30124536 100644 --- a/python/ray/tune/result.py +++ b/python/ray/tune/result.py @@ -16,10 +16,10 @@ NODE_IP = "node_ip" # (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. @@ -35,7 +35,7 @@ TIME_THIS_ITER_S = "time_this_iter_s" # (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