The first part for Block1 passes correctly, second Block fails with following message:
I have used n_filters ( conv = Conv2D(n_filters,) in both layers, when
I run, first layer test passes but second layer just gives the
following error:
Test failed
Expected value
[‘Conv2D’, (None, 96, 128, 1024), 28672, ‘same’, ‘relu’, ‘HeNormal’]
does not match the input value:
[‘Conv2D’, (None, 96, 128, 32), 896, ‘same’, ‘relu’, ‘HeNormal’]
AssertionError Traceback (most recent call last)
in
30 print(layer)
31
—> 32 comparator(summary(model2), output2)
/tf/W3A2/test_utils.py in comparator(learner, instructor)
17 “\n\n does not match the input value: \n\n”,
18 colored(f"{a}", “red”))
—> 19 raise AssertionError(“Error in test”)
20 print(colored(“All tests passed!”, “green”))
21
AssertionError: Error in test
Can you please help with a suggestion to resolve this?