While I’m running the unit test, I got the following error,
Test failed at index 1
Expected value
[‘Lambda’, (None, 90), 0]
does not match the input value:
[‘TensorFlowOpLayer’, [(None, 90)], 0]
AssertionError Traceback (most recent call last)
in
1 # UNIT TEST
2 output = summary(model)
----> 3 comparator(output, djmodel_out)
~/work/W1A3/test_utils.py in comparator(learner, instructor)
26 “\n\n does not match the input value: \n\n”,
27 colored(f"{a}", “red”))
—> 28 raise AssertionError(“Error in test”)
29 print(colored(“All tests passed!”, “green”))
30
AssertionError: Error in test