Guest User

Untitled

a guest
Jan 17th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. # the second block of the ResNet module are the 3x3 CONVs
  2. bn2 = BatchNormalization(axis=chanDim, epsilon=bnEps, momentum=bnMom)(conv1)
  3. act2 = Activation("relu")(bn2)
  4. conv2 = Conv2D(int(K * 0.25), (3, 3), strides=stride, padding="same", use_bias=False,
  5. kernel_regularizer=l2(reg)(act2)
Add Comment
Please, Sign In to add comment