I\'m creating a neural network using the backpropagation technique for learning.
I understand we need to find the derivative of the activation function used. I\'m using
Dougal is correct. Just do
f = 1/(1+exp(-x)) df = f * (1 - f)