Watching a YouTube course about how to make a neural network in Python because we’re insane, and the guy said in the intro that you don’t have to know anything about linear algebra or calculus to understand neural networks.
At the start of episode 2 he’s answering some questions, including why there’s only 1 bias for the formula.
Well.
If you knew anything about linear algebra, you’d know why there’s only 1 bias 😒
(It’s because the formula is just y = mx + b, where b = the constant = the bias, and the weight = the slope = m. So the formula/coding a neuron in a neural network is y = mx + b, and there’s an “mx” for every previous neuron. So in his example, it’s y = mx + mx + mx + b. And each individual neuron performs Gradient Descent to determine if it’s active or not, ie the lowest point of all the slopes put together).
















