Hi! This is the error I’m getting from the first exercise in Residual Networks. I just can’t figure out what am I missing or doing wrong. Could someone please help me?
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-22-eb060d3308af> in <module>
8 A3 = identity_block(X, f=2, filters=[4, 4, 3],
9 initializer=lambda seed=0:constant(value=1),
---> 10 training=False)
11 print('\033[1mWith training=False\033[0m\n')
12 A3np = A3.numpy()
TypeError: identity_block() got an unexpected keyword argument 'initializer'