Exercise 3 - ResNet50 .AssertionError: Error in test - week 2 (Assignment 1)

I got following error in Exercise 3 - ResNet50.How to resolve this issue? mentoring will be helpful.

Test failed
Expected value

[‘Conv2D’, (None, 8, 8, 512), 66048, ‘valid’, ‘linear’, ‘GlorotUniform’]

does not match the input value:

[‘Conv2D’, (None, 8, 8, 512), 131584, ‘valid’, ‘linear’, ‘GlorotUniform’]

AssertionError Traceback (most recent call last)
in
3 model = ResNet50(input_shape = (64, 64, 3), classes = 6)
4
----> 5 comparator(summary(model), ResNet50_summary)

/tf/W2A1/test_utils.py in comparator(learner, instructor)
21 “\n\n does not match the input value: \n\n”,
22 colored(f"{a}", “red”))
—> 23 raise AssertionError(“Error in test”)
24 print(colored(“All tests passed!”, “green”))
25

AssertionError: Error in test

Hi vipin4948,

This code looks correct, which means that the problem lies elsewhere. Have a look at your convolutional_block to see if that causes the issue.

By the way, if this is still possible, could you remove your code? Thanks!