From 05ab75fbe193a07be28db1477b103b25a17ab4b9 Mon Sep 17 00:00:00 2001 From: Crissman Loomis Date: Thu, 11 Feb 2021 05:41:45 +0900 Subject: [PATCH] [docs] Add mode to Ray Tune quick start (#14023) --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index a69fc9227..c937160fd 100644 --- a/README.rst +++ b/README.rst @@ -132,7 +132,7 @@ This example runs a parallel grid search to optimize an example objective functi "beta": tune.choice([1, 2, 3]) }) - print("Best config: ", analysis.get_best_config(metric="mean_loss")) + print("Best config: ", analysis.get_best_config(metric="mean_loss", mode="min")) # Get a dataframe for analyzing trial results. df = analysis.results_df