From cb9b3915067b66f81ad156b521432398ac0616dc Mon Sep 17 00:00:00 2001 From: Will Jessop Date: Mon, 4 Jan 2016 21:22:24 +0000 Subject: [PATCH 1/4] Typo in example --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 03ad54e..1d2fc0e 100644 --- a/README.md +++ b/README.md @@ -25,9 +25,9 @@ Create new network: n := neural.NewNetwork(9, []int{9,9,4}) // Randomize sypaseses weights n.RandomizeSynapses() - - result := n.Calucate([]float64{0,1,0,1,1,1,0,1,0}) - + + result := n.Calculate([]float64{0,1,0,1,1,1,0,1,0}) + ``` # Persist network From db8375482dd8cc40fefca4f250bc1bc226407a42 Mon Sep 17 00:00:00 2001 From: Will Jessop Date: Mon, 4 Jan 2016 21:24:31 +0000 Subject: [PATCH 2/4] Another typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1d2fc0e..a270c47 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ Create new network: Save to file: ```go - import "github.com/NOX73/or-neural/persist" + import "github.com/NOX73/go-neural/persist" persist.ToFile("/path/to/file.json", network) ``` From d48b3bcb97f7ecce8f593c5b887163d5488cf5a6 Mon Sep 17 00:00:00 2001 From: Raphael Deem Date: Thu, 28 Jan 2016 14:17:33 -0800 Subject: [PATCH 3/4] Update README.md typo --- README.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index a270c47..ac47576 100644 --- a/README.md +++ b/README.md @@ -19,16 +19,14 @@ Create new network: //... - // Network has 9 enters and 3 layers + // Network has 9 enters and 3 layers // ( 9 neurons, 9 neurons and 4 neurons). // Last layer is network output. n := neural.NewNetwork(9, []int{9,9,4}) // Randomize sypaseses weights n.RandomizeSynapses() - result := n.Calculate([]float64{0,1,0,1,1,1,0,1,0}) - -``` + result := n.Caculate([]float64{0,1,0,1,1,1,0,1,0}) # Persist network @@ -66,7 +64,7 @@ You can get estimate of learning quality: e := learn.Evaluation(network, in, idealOut) ``` -# Engine +# Engine For concurrent learn, calculate & dump neural network. From 6def22c96639316a30b7727b28af5cdf21222605 Mon Sep 17 00:00:00 2001 From: Raphael Deem Date: Sun, 31 Jan 2016 14:52:53 -0800 Subject: [PATCH 4/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ac47576..e30e7bb 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ Create new network: // Randomize sypaseses weights n.RandomizeSynapses() - result := n.Caculate([]float64{0,1,0,1,1,1,0,1,0}) + result := n.Calculate([]float64{0,1,0,1,1,1,0,1,0}) # Persist network