I’m working through Andrej Karpathy’s awesome introduction to neural networks and the backpropagation algorithm, and am trying to differentiate the sigmoid function: $ $ \sigma(x) = \frac{1}{(1+e)^{-x}} $ $ My understanding is the quotient rule holds that given an equation $ y=\frac{t}{b}$ the derivative of the function should be: $ $ y’ = \frac{t’b –Read more