i am getting this error
[ValidateApp | INFO] Validating ‘/home/jovyan/work/submitted/courseraLearner/W4A2/Deep Neural Network - Application.ipynb’
[ValidateApp | INFO] Executing notebook with kernel: python3
[ValidateApp | ERROR] Timeout waiting for execute reply (30s).
[ValidateApp | ERROR] Interrupting kernel
[ValidateApp | ERROR] Timeout waiting for execute reply (30s).
[ValidateApp | ERROR] Interrupting kernel
Tests failed on 2 cell(s)! These tests could be hidden. Please check your submission.
The following cell failed:
parameters, costs = two_layer_model(train_x, train_y, layers_dims = (n_x, n_h, n_y)...
print("Cost after first iteration: " + str(costs[0]))
two_layer_model_test(two_layer_model)
The error was:
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
<ipython-input-8-f9ec5304d38d> in <module>
----> 1 parameters, costs = two_layer_model(train_x, train_y, layers_dims = (n_x, n...
2
3 print("Cost after first iteration: " + str(costs[0]))
4
5 two_layer_model_test(two_layer_model)
ValueError: too many values to unpack (expected 2)
==========================================================================================
The following cell failed:
parameters, costs = L_layer_model(train_x, train_y, layers_dims, num_iterations = 1...
print("Cost after first iteration: " + str(costs[0]))
L_layer_model_test(L_layer_model)
The error was:
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
<ipython-input-14-d5e7eb27c0fc> in <module>
----> 1 parameters, costs = L_layer_model(train_x, train_y, layers_dims, num_iterat...
2
3 print("Cost after first iteration: " + str(costs[0]))
4
5 L_layer_model_test(L_layer_model)
ValueError: too many values to unpack (expected 2)