~/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
This message indicates that you are using an operator instead of an Add() layer while constructing ResNet50. Have a look at the layers and see if you can locate where you do this. Good luck!
Thank you for the prompt reply.
Based on stated from the code cell, I’ve edited my code to include Add(), but the weirdest thing is, when I run the code and test it, the output I get, is the input_shape and a text box that lets me enter values, which makes no sense.
####input##############
model = ResNet50(input_shape = (64, 64, 3), classes = 6)
print(model.summary())
#####output##############
(64, 64, 3) (a textbox)
#####################
Is it possible for me to show you my code personally?