Skip to content

Commit

Permalink
fixed typo in XNet.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Arnau committed Feb 19, 2019
1 parent 8492dcd commit 3a3f3a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion XNet.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def model(input_shape=(64,64,3), classes=3, kernel_size = 3, filter_depth = (64,
conv1 = Conv2D(filter_depth[0], (kernel_size, kernel_size), padding="same")(img_input)
batch1 = BatchNormalization()(conv1)
act1 = Activation("relu")(batch1)
pool1 = MaxPooling2D(pool_size=(2, 2))(pool1)
pool1 = MaxPooling2D(pool_size=(2, 2))(act1)
#100x100

conv2 = Conv2D(filter_depth[1], (kernel_size, kernel_size), padding="same")(pool1)
Expand Down

0 comments on commit 3a3f3a4

Please sign in to comment.