unet-rgb
unet-rgb copied to clipboard
TypeError: 'module' object is not callable
Traceback (most recent call last):
File "unet.py", line 137, in
Check your Python and Keras version, also your import msg on top if the py file.
I have solved the same problem replacing "mergeXX = merge([YYY,ZZZ], mode = 'concat', concat_axis = N)" with "mergeXX= concatenate([YYY,ZZZ],axis=N)" via this
Try to add 'from keras.layers import merge' in unet.py file.