I can’t find what is wrong with my code. I keep getting the following message:
AssertionError Traceback (most recent call last)
in
13 assert type(A) == EagerTensor, “Use only tensorflow and keras functions”
14 assert tuple(tf.shape(A).numpy()) == (3, 2, 2, 6), “Wrong shape.”
—> 15 assert np.allclose(A.numpy(), convolutional_block_output1), “Wrong values when training=False.”
16 print(A[0])
17
AssertionError: Wrong values when training=False.
My code is below. Thanks!
{moderator edit - solution code removed}