Hello, I am getting this error as I try to initialize my parameters. I used w = np.zeros((dim, 1))
b = 0
AssertionError Traceback (most recent call last)
in
2 w, b = initialize_with_zeros(dim)
3
----> 4 assert type(b) == float
5 print ("w = " + str(w))
6 print ("b = " + str(b))
AssertionError: