Created
July 18, 2019 22:46
-
-
Save michelkana/484e3b21f667f4b061a1f612b92be532 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
from keras.layers import Input, Dense, Conv2D, MaxPooling2D, UpSampling2D | |
from keras.models import Model | |
nb_filter = 32 | |
kernel_size = 3 | |
x = Conv2D(nb_filter, (kernel_size, kernel_size), activation='relu', padding='same')(input_img) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment