You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems that 2 times batch_normalization have been done in each CNN layer. Is it necessary? I really don't know what's the reason. Could you please explain it for me? Thanks a lot! #2
x.shape=(none, none, none)
output.shape = (1/2, 1/2, 1/2)
def cnn_cell (size, x, pool=True):
x = norm(conv2d(size)(x))
x = norm(conv2d(size)(x))
if pool:
x = maxpool(x)
return x