Created
August 17, 2019 16:07
-
-
Save SuvroBaner/d74d806012e22d9dd4b2f24b2d63d817 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def model(input_shape): | |
# Define the input placeholder as a tensor with shape input_shape. Think of this as your input image! | |
X_input = Input(input_shape) | |
# Zero-Padding: pads the border of X_input with zeroes | |
X = ZeroPadding2D((3, 3))(X_input) | |
# CONV -> BN -> RELU Block applied to X | |
X = Conv2D(32, (7, 7), strides = (1, 1), name = 'conv0')(X) | |
X = BatchNormalization(axis = 3, name = 'bn0')(X) | |
X = Activation('relu')(X) | |
# MAXPOOL | |
X = MaxPooling2D((2, 2), name='max_pool')(X) | |
# FLATTEN X (means convert it to a vector) + FULLYCONNECTED | |
X = Flatten()(X) | |
X = Dense(1, activation='sigmoid', name='fc')(X) | |
# Create model. This creates your Keras model instance, you'll use this instance to train/test the model. | |
model = Model(inputs = X_input, outputs = X, name='HappyModel') | |
return model |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment