Hello
For the generation of the matrix for the weights for the 1st neuron of (1,2), second neuron (-3,4) and third neuron (5,-6)
Is the following code correct?
w=np.array([[1,2],[-3,4],[5,-6]]). Should this be a 3x2 matrix rather than 2x3 matrix?
Thank you
Eric