Skip to content

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

Description

@yjiangling

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

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions