From ba2d8dc4a8e27659c1420fe52390cb7981df4a94 Mon Sep 17 00:00:00 2001 From: Oleksii Trekhleb Date: Sat, 7 Dec 2019 22:30:04 +0100 Subject: [PATCH] Add machine-learning algorithm examples. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 9f11f2b3..1c3200ef 100644 --- a/README.md +++ b/README.md @@ -135,6 +135,8 @@ a set of rules that precisely define a sequence of operations. * `A` [Travelling Salesman Problem](src/algorithms/graph/travelling-salesman) - shortest possible route that visits each city and returns to the origin city * **Cryptography** * `B` [Polynomial Hash](src/algorithms/cryptography/polynomial-hash) - rolling hash function based on polynomial +* **Machine Learning** + * `B` [NanoNeuron](https://github.com/trekhleb/nano-neuron) - 7 simple JS functions that illustrate how machines can actually learn (forward/backward propagation) * **Uncategorized** * `B` [Tower of Hanoi](src/algorithms/uncategorized/hanoi-tower) * `B` [Square Matrix Rotation](src/algorithms/uncategorized/square-matrix-rotation) - in-place algorithm