Can somebody please help me with what exactly I am doing wrong? I trying to debug this for a long time and I have hit a deadend.
{moderator edit - solution code removed}
The error it’s showing me:
AssertionError Traceback (most recent call last)
in
12 assert type(A) == EagerTensor, “Use only tensorflow and keras functions”
13 assert tuple(tf.shape(A).numpy()) == (3, 2, 2, 6), “Wrong shape.”
—> 14 assert np.allclose(A.numpy(), convolutional_block_output1), “Wrong values when training=False.”
15 print(A[0])
16
AssertionError: Wrong values when training=False.
Please help.