[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.
This commit is contained in:
Praveen Palanisamy
2018-10-16 14:07:53 -04:00
committed by Richard Liaw
parent 6240ccbc6e
commit 4d8cfc0bf5
+3 -3
View File
@@ -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