Fixed cost function

pull/1/head
E. Almqvist 4 years ago
parent 9ec78acd88
commit 23b128ad11
  1. 2
      rgbAI/lib/func.py

@ -16,7 +16,7 @@ class AIlib:
for i in range(outLen):
sumC += (out[i] - correctOut[i])**2 # get the difference of every value
return sumC # return the average cost of all rows
return sumC / outLen # return the average cost of all rows
def genRandomMatrix( x:int, y:int, min: float=0.0, max: float=1.0 ): # generate a matrix with x, y dimensions with random values from min-max in it
return np.random.rand(x, y)

Loading…
Cancel
Save