From c3e9a8488124aa404da9abf7351eba2e3e91cf29 Mon Sep 17 00:00:00 2001 From: bararchy Date: Sun, 17 Sep 2017 13:04:00 +0300 Subject: [PATCH] typos --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8f83f67..74a88a6 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ ann = Crystal::Fann::Network::Standard.new(2, [2], 1) ann.train_single([1.0, 0.1], [0.5]) end result = ann.run([1.0, 0.1]) -# Remmber to close the network when done to free allocated C mem +# Remember to close the network when done to free allocated C memory ann.close ``` @@ -69,7 +69,7 @@ All C lib docs can be found here -> http://libfann.github.io/fann/docs/files/fan - [x] Add TrainData class - [x] Add network call method to train on train data - [x] Add binding to the 'Parallel' binding to work on multi CPU at same time -- [ ] Clean uneeded bindings in the LibFANN binding +- [ ] Clean unneeded bindings in the LibFANN binding - [ ] Add specific Exceptions - [ ] Add binding and checks for lib errors