From 4e4acc8ed3a12bbfc8862460379eed2ade7deb45 Mon Sep 17 00:00:00 2001 From: futpib Date: Mon, 8 Jan 2018 16:54:44 +0300 Subject: [PATCH] Fix a trivial typo in evolution tutorial --- mkdocs/templates/docs/tutorials/evolution.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkdocs/templates/docs/tutorials/evolution.md b/mkdocs/templates/docs/tutorials/evolution.md index dbd84b6..e5d792b 100644 --- a/mkdocs/templates/docs/tutorials/evolution.md +++ b/mkdocs/templates/docs/tutorials/evolution.md @@ -70,7 +70,7 @@ Check out the evolution options [here](../architecture/network.md) and [here](.. * `popsize: 100` - The default population size is 50, but 100 worked better for me. * `elitism: 10` - I want to keep the fittest 10% of the population to the next generation without breeding them. * `log: 10` - I want to log the status every 10 iterations. -* `error: 0.03` - I want the evolution process when the error is below 0.03; +* `error: 0.03` - I want the evolution process to stop when the error is below 0.03; * `iterations: 1000` - I want the evolution process to stop after 1000 iterations if the target error hasn't been reached yet. * `mutationRate: 0.5` - I want to increase the mutation rate to surpass possible local optima.