{removed by mentor}
Hello,
I got a little confused in week 1’s assignment exercise 2. I understand we are taking the dot product of a_in and w here and then applying the sigmoid function, but why do we define a_in as a 1D array in this line of code:
x_tst = 0.1np.arange(1,3,1).reshape(2,)
Shouldn’t we write 0.1np.arange(1,3,1).reshape(2,1) and make it 2D since w is 2D? I know the code works when we say reshape(2,) as well but I don’t understand why it works.