From 4dc78b735bf40df91825febbe3a8ea9fc535ab4d Mon Sep 17 00:00:00 2001 From: Marlon Date: Mon, 15 Oct 2018 07:25:39 +0200 Subject: [PATCH] [tune] Fix misleading comment (#3058) --- python/ray/tune/result.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ray/tune/result.py b/python/ray/tune/result.py index 5b7ade11f..c75ba77e1 100644 --- a/python/ray/tune/result.py +++ b/python/ray/tune/result.py @@ -25,7 +25,7 @@ EPISODES_TOTAL = "episodes_total" # Number of timesteps in this iteration. TIMESTEPS_THIS_ITER = "timesteps_this_iter" -# (Optional/Auto-filled) Accumulated time in seconds for this experiment. +# (Auto-filled) Accumulated number of timesteps for this entire experiment. TIMESTEPS_TOTAL = "timesteps_total" # (Auto-filled) Time in seconds this iteration took to run.