From a3ce5ad643c27f4f7625345ffbadb19e93bf4099 Mon Sep 17 00:00:00 2001 From: tjkessler Date: Sun, 24 Mar 2019 15:51:58 -0400 Subject: [PATCH] Updated documentation --- docs/usage/quickstart.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/usage/quickstart.md b/docs/usage/quickstart.md index a63394d..8325453 100644 --- a/docs/usage/quickstart.md +++ b/docs/usage/quickstart.md @@ -102,7 +102,8 @@ learning rate, beta, decay and epsilon values, and number of neurons per hidden sv.tune_hyperparameters(50, 50) # By default, all bees will use the same set assignments; to shuffle them: -sv.tune_hyperparameters(50, 50, shuffle=True, split=[0.7, 0.2, 0.1]) +sv.tune_hyperparameters(50, 50, shuffle='all', split=[0.7, 0.2, 0.1]) +# To shuffle only the training sets (learning and validation), supply `train` instead # By default, bees are evaluated on their performance across all sets; to specify a set to # perform the evaluation: