You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"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, 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"
The text was updated successfully, but these errors were encountered: