From 565a74dddc734607a7f02b5c6921bffff71e78ea Mon Sep 17 00:00:00 2001 From: "E. Almqvist" Date: Sat, 17 Oct 2020 18:11:39 +0200 Subject: [PATCH] Fixed comment --- rgbAI/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rgbAI/main.py b/rgbAI/main.py index f38329c..3042392 100755 --- a/rgbAI/main.py +++ b/rgbAI/main.py @@ -8,7 +8,7 @@ class rgb(object): if( not loadedWeights or not loadedBias ): # if one is null (None) then just generate new ones print("Generating weights and biases...") self.weights = [ ai.genRandomMatrix(3, 8), ai.genRandomMatrix(8, 8), ai.genRandomMatrix(8, 3) ] # array of matrices of weights - # 3 input neurons -> 4 hidden neurons -> 4 hidden neurons -> 3 output neurons + # 3 input neurons -> 8 hidden neurons -> 8 hidden neurons -> 3 output neurons # Generate the biases self.bias = [ ai.genRandomMatrix(1, 8), ai.genRandomMatrix(1, 8), ai.genRandomMatrix(1, 3) ]