/tf/W3A2/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
after many attempts i’m still gettting error … help me
Hi there, I have a similar problem. I have not hard-coded my filter numbers or anything else.
I don’t know what I’m missing here. Can you please provide me with some guidance?
Your issue is in Ex 3, as shown by the error you shared above.
Your variables cblock2, cblock3. cblock4, cblock5 are incorrect. In these variables, you have to multiply number of filters with increasing power of 2.
Your variable conv10 is also incorrect. The first argument needs to be number of classes, but you are passing number of filters.