Here I have copied all the message, which is shown in the show grader output link:
[ValidateApp | INFO] Validating â/home/jovyan/work/submitted/courseraLearner/W4A1/Building_your_Deep_Neural_Network_Step_by_Step.ipynbâ
[ValidateApp | INFO] Executing notebook with kernel: python3
Tests failed on 10 cell(s)! These tests could be hidden. Please check your submission.
The following cell failed:
parameters = initialize_parameters(3,2,1)
print("W1 = " + str(parameters["W1"]))
print("b1 = " + str(parameters["b1"]))
print("W2 = " + str(parameters["W2"]))
print("b2 = " + str(parameters["b2"]))
initialize_parameters_test(initialize_parameters)
The error was:
---------------------------------------------------------------------------
AssertionError Traceback (most recent call last)
<ipython-input-3-3984a613433b> in <module>
6 print("b2 = " + str(parameters["b2"]))
7
----> 8 initialize_parameters_test(initialize_parameters)
~/work/submitted/courseraLearner/W4A1/public_tests.py in initialize_parameters_test...
30 ]
31
---> 32 multiple_test(test_cases, target)
33
34
~/work/submitted/courseraLearner/W4A1/test_utils.py in multiple_test(test_cases, ta...
140 print('\033[92m', success," Tests passed")
141 print('\033[91m', len(test_cases) - success, " Tests failed")
--> 142 raise AssertionError("Not all tests were passed for {}. Check your ...
143
AssertionError: Not all tests were passed for initialize_parameters. Check your equ...
==========================================================================================
The following cell failed:
t_dZ, t_linear_cache = linear_backward_test_case()
t_dA_prev, t_dW, t_db = linear_backward(t_dZ, t_linear_cache)
print("dA_prev: " + str(t_dA_prev))
print("dW: " + str(t_dW))
print("db: " + str(t_db))
linear_backward_test(linear_backward)
The error was:
---------------------------------------------------------------------------
AssertionError Traceback (most recent call last)
<ipython-input-16-3427f65cb756> in <module>
6 print("db: " + str(t_db))
7
----> 8 linear_backward_test(linear_backward)
~/work/submitted/courseraLearner/W4A1/public_tests.py in linear_backward_test(targe...
308 ]
309
--> 310 multiple_test(test_cases, target)
311
312 def linear_activation_backward_test(target):
~/work/submitted/courseraLearner/W4A1/test_utils.py in multiple_test(test_cases, ta...
140 print('\033[92m', success," Tests passed")
141 print('\033[91m', len(test_cases) - success, " Tests failed")
--> 142 raise AssertionError("Not all tests were passed for {}. Check your ...
143
AssertionError: Not all tests were passed for linear_backward. Check your equations...
==========================================================================================
The following cell failed:
t_dAL, t_linear_activation_cache = linear_activation_backward_test_case()
t_dA_prev, t_dW, t_db = linear_activation_backward(t_dAL, t_linear_activation_cache...
print("With sigmoid: dA_prev = " + str(t_dA_prev))
print("With sigmoid: dW = " + str(t_dW))
print("With sigmoid: db = " + str(t_db))
t_dA_prev, t_dW, t_db = linear_activation_backward(t_dAL, t_linear_activation_cache...
print("With relu: dA_prev = " + str(t_dA_prev))
print("With relu: dW = " + str(t_dW))
print("With relu: db = " + str(t_db))
linear_activation_backward_test(linear_activation_backward)
The error was:
---------------------------------------------------------------------------
AssertionError Traceback (most recent call last)
<ipython-input-18-1dd7958789b5> in <module>
11 print("With relu: db = " + str(t_db))
12
---> 13 linear_activation_backward_test(linear_activation_backward)
~/work/submitted/courseraLearner/W4A1/public_tests.py in linear_activation_backward...
378 ]
379
--> 380 multiple_test(test_cases, target)
381
382 def L_model_backward_test(target):
~/work/submitted/courseraLearner/W4A1/test_utils.py in multiple_test(test_cases, ta...
140 print('\033[92m', success," Tests passed")
141 print('\033[91m', len(test_cases) - success, " Tests failed")
--> 142 raise AssertionError("Not all tests were passed for {}. Check your ...
143
AssertionError: Not all tests were passed for linear_activation_backward. Check you...
==========================================================================================
The following cell failed:
t_AL, t_Y_assess, t_caches = L_model_backward_test_case()
grads = L_model_backward(t_AL, t_Y_assess, t_caches)
print("dA0 = " + str(grads['dA0']))
print("dA1 = " + str(grads['dA1']))
print("dW1 = " + str(grads['dW1']))
print("dW2 = " + str(grads['dW2']))
print("db1 = " + str(grads['db1']))
print("db2 = " + str(grads['db2']))
L_model_backward_test(L_model_backward)
The error was:
---------------------------------------------------------------------------
AssertionError Traceback (most recent call last)
<ipython-input-20-3ace16762626> in <module>
9 print("db2 = " + str(grads['db2']))
10
---> 11 L_model_backward_test(L_model_backward)
~/work/submitted/courseraLearner/W4A1/public_tests.py in L_model_backward_test(targ...
442 ]
443
--> 444 multiple_test(test_cases, target)
445
446 def update_parameters_test(target):
~/work/submitted/courseraLearner/W4A1/test_utils.py in multiple_test(test_cases, ta...
140 print('\033[92m', success," Tests passed")
141 print('\033[91m', len(test_cases) - success, " Tests failed")
--> 142 raise AssertionError("Not all tests were passed for {}. Check your ...
143
AssertionError: Not all tests were passed for L_model_backward. Check your equation...