###########input####################
def ResNet50(input_shape = (64, 64, 3), classes = 6):
…
####output###################################
Test failed
Expected value
[‘Add’, (None, 15, 15, 256), 0]
does not match the input value:
[‘TensorFlowOpLayer’, [(None, 15, 15, 256)], 0]
AssertionError Traceback (most recent call last)
in
3 model = ResNet50(input_shape = (64, 64, 3), classes = 6)
4
----> 5 comparator(summary(model), ResNet50_summary)
~/work/release/W2A1/test_utils.py in comparator(learner, instructor)
19 “\n\n does not match the input value: \n\n”,
20 colored(f"{a}", “red”))
—> 21 raise AssertionError(“Error in test”)
22 print(colored(“All tests passed!”, “green”))
23
AssertionError: Error in test
#########################################################
I can’t seem to find anything wrong with the code, so I dont understand the error.