Hi I am stuck on
Initialize parameters
### START CODE HERE ### (~ 1 line of code)
W = parameters["W"]
b = parameters["b"]
The hint states ~ 1 line of code.
The error message is
Initialize parameters
### START CODE HERE ### (~ 1 line of code)
W = parameters["W"]
b = parameters["b"]
any pointers?
There is no such exercise in C1W3 assignment that instructs to initialize parameters.
Please specify the correct course category.
This belongs to Deep Learning Specialization Course 1, I guess. Please confirm which week’s assignment it is and move it to the correct category as described here.
Regarding your query, your implementation is incorrect. We use zeros
or random
function of the Numpy to initialize the parameters.
Best,
Saif.