From 8ac633de9702bb4d035a79b4120ca1a35bad4a88 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Sat, 10 Oct 2020 17:24:47 +1100 Subject: [PATCH] docs: fix simple typo, optimizion -> optimization There is a small typo in README.md. Should read `optimization` rather than `optimizion`. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e8940c9..4e04d47 100644 --- a/README.md +++ b/README.md @@ -105,7 +105,7 @@ backpropogation. A primary design goal of Genann was to store all the network weights in one contigious block of memory. This makes it easy and efficient to train the -network weights using direct-search numeric optimizion algorthims, +network weights using direct-search numeric optimization algorthims, such as [Hill Climbing](https://en.wikipedia.org/wiki/Hill_climbing), [the Genetic Algorithm](https://en.wikipedia.org/wiki/Genetic_algorithm), [Simulated Annealing](https://en.wikipedia.org/wiki/Simulated_annealing), etc.