Hi,
A notebook in :
https://github.com/imlab-uiip/keras-segnetstarts with some imports:
from keras.layers.core import Layer, Dense, Dropout, Activation, Flatten, Reshape, Merge, Permute
from keras.layers.convolutional import Convolution2D, MaxPooling2D, UpSampling2D, ZeroPadding2D
from keras.layers.normalization import BatchNormalization
from keras.callbacks import ModelCheckpoint
from keras import backend as K
As I tried to run that cell,the Merge module seems to be unknown:
---------------------------------------------------------------------------
ImportError Traceback (most recent call last) <ipython-input-8-82cbf4fe5266> in <module>()
----> 1 import keras.layers.core.Merge as Merge ImportError: No module named Merge
I suppose this is because I have keras 2.02 installed.
Is there a turn around to import this module?
Thanks.