I can make a neural network, I just need a clarification on bias implementation. Which way is better: Implement the Bias matrices B1, B2, .. Bn
for each layer in their own, seperate matrix from the weight matrix, or, include the biases in the weight matrix by adding a 1
to the previous layer output (input for this layer). In images, I am asking whether this implementation:
Or this implementation:
Is the best. Thank you