Error on Deep learning week 4 asignment 2 layer NN

Hello everyone, I’m getting error on Deep Neural Network - Application 2 layer NN assignment. Can anyone help me to fix this error ?

Thanks in advance!!

Have a careful look at the arguments you are passing to linear_activation_backward. The first call is for the output layer, so the dA value, the cache value and the activation value should be for the output layer. The hint is that two out of the three of them are correct. And the same issue exists in the second call for the hidden layer.

1 Like

Thanks sir!! It worked!!