Cleaned code

pull/1/head
E. Almqvist 4 years ago
parent ab6d2a1169
commit 0c6d554268
  1. 31
      rgbAI/lib/func.py

@ -41,15 +41,7 @@ class AIlib:
# Calculate the partial derivative for that prop # Calculate the partial derivative for that prop
return dCost / dProp return dCost / dProp
def compareInstance( obj, neuronIndex ): def compareAIobjects( obj1, obj2 ):
# Create new instances of the object
if( not obj1 or not obj2 ):
obj1 = copy(obj) # annoying way to create a new instance of the object
obj2 = copy(obj)
obj2.weights[layerIndex][neuronIndex] += theta # mutate the second object
# obj2.bias[layerIndex] += theta
# Compare the two instances # Compare the two instances
res1 = AIlib.think( inp, obj1 ) res1 = AIlib.think( inp, obj1 )
cost1 = AIlib.getThinkCost( inp, res1 ) # get the cost cost1 = AIlib.getThinkCost( inp, res1 ) # get the cost
@ -59,10 +51,25 @@ class AIlib:
# Actually calculate stuff # Actually calculate stuff
dCost = cost2 - cost1 dCost = cost2 - cost1
dWeight = obj2.weights[layerIndex] - obj1.weights[layerIndex] return dCost
#dBias = obj2.bias[layerIndex] - obj1.bias[layerIndex]
def compareInstance( obj, theta, neuronIndex ):
# Create new instances of the object
obj2_w = copy(obj) # annoying way to create a new instance of the object
obj2_b = copy(obj)
obj2_w.weights[layerIndex][neuronIndex] += theta # mutate the second objects neuron
dCost_weight = AIlib.compareAIobjects( obj, obj2_w ) # compare the two and get the dCost with respect to the weights
obj2_b.bias[layerIndex][neuronIndex] += theta
dCost_bias = AIlib.compareAIobjects( obj, obj2_b )
# obj2.bias[layerIndex] += theta
# dWeight = obj2.weights[layerIndex] - obj1.weights[layerIndex]
# dBias = obj2.bias[layerIndex] - obj1.bias[layerIndex]
return dCost, dWeight return dCost
def gradient( inp:np.array, obj, theta:float, maxLayer:int, layerIndex: int=0, grads=None, obj1=None, obj2=None ): # Calculate the gradient for that prop def gradient( inp:np.array, obj, theta:float, maxLayer:int, layerIndex: int=0, grads=None, obj1=None, obj2=None ): # Calculate the gradient for that prop
# Check if grads exists, if not create the buffer # Check if grads exists, if not create the buffer

Loading…
Cancel
Save