ssd_keras
ssd_keras copied to clipboard
I got an error: 'module' object is not callable
TypeError Traceback (most recent call last)
~/my_ssd/ssd_keras/ssd.py in SSD300(input_shape, num_classes) 256 net['conv8_2_mbox_loc_flat'], 257 net['pool6_mbox_loc_flat']], --> 258 mode='concat', concat_axis=1, name='mbox_loc') 259 net['mbox_conf'] = merge([net['conv4_3_norm_mbox_conf_flat'], 260 net['fc7_mbox_conf_flat'],
TypeError: 'module' object is not callable
Me too! I want to know how to solve this problem.
I found the solution!
Keras is updated, so we should use 'from keras.layers import concatenate' instead of 'from keras.layers import merge'
@yutaroyamanaka but changing import doesn't work. What exactly should we do to run the project correctly?