Hi I am struggling to finish the L_model forward () implemantation.
I think my AL, cache are NOT ok. I have
1 test passed and 2 tests failed, with Wrong shape for variable 0 and Wrong shape for variable 1
Here is my implementation:
AL, cache = linear_activation_forward(A_prev, parameters[‘W’ + str(L-1)], parameters[‘b’ + str(L)], activation = “sigmoid”)
caches.append(cache)
any hint of what went wrong?
Thks