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
Traceback (most recent call last):
File "unet.py", line 137, in
model = myunet.get_unet()
File "unet.py", line 59, in get_unet
merge6 = merge([drop4, up6], mode='concat', concat_axis=3)
TypeError: 'module' object is not callable
can anyone help?
The text was updated successfully, but these errors were encountered:
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
Traceback (most recent call last):
File "unet.py", line 137, in
model = myunet.get_unet()
File "unet.py", line 59, in get_unet
merge6 = merge([drop4, up6], mode='concat', concat_axis=3)
TypeError: 'module' object is not callable
can anyone help?
The text was updated successfully, but these errors were encountered: