Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Lab 7 issues #5

Open
sv720 opened this issue Mar 11, 2023 · 1 comment
Open

Lab 7 issues #5

sv720 opened this issue Mar 11, 2023 · 1 comment

Comments

@sv720
Copy link

sv720 commented Mar 11, 2023

"from keras.layers import Dropout, concatenate, merge, UpSampling2D, MaxPooling2D"
merge not supported for Keras 2+
Inclusion of merge prevents from running
replace with:

"from keras.layers import Dropout, concatenate, UpSampling2D, MaxPooling2D"

@sv720
Copy link
Author

sv720 commented Mar 11, 2023

More library incompatibilities and fixes:

#from keras.layers.normalization import BatchNormalization
from tensorflow.keras.layers import BatchNormalization
#from keras.layers.advanced_activations import LeakyReLU
from keras.layers import LeakyReLU

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant