Using Theano backend.
Traceback (most recent call last):
File "main.py", line 63, in
m = Model(input=[x, x_maps], output=sam_resnet([x, x_maps]))
File "/Users/MichaelYan/sam/models.py", line 130, in sam_resnet
dcn = dcn_resnet(input_tensor=x[0])
File "/Users/MichaelYan/sam/dcn_resnet.py", line 143, in dcn_resnet
x = conv_block(x, 3, [64, 64, 256], stage=2, block='a', strides=(1, 1))
File "/Users/MichaelYan/sam/dcn_resnet.py", line 66, in conv_block
x = merge([x, shortcut], mode='sum')
TypeError: 'module' object is not callable
Hi All,
I have been getting the following error:
Using Theano backend. Traceback (most recent call last): File "main.py", line 63, in
m = Model(input=[x, x_maps], output=sam_resnet([x, x_maps]))
File "/Users/MichaelYan/sam/models.py", line 130, in sam_resnet
dcn = dcn_resnet(input_tensor=x[0])
File "/Users/MichaelYan/sam/dcn_resnet.py", line 143, in dcn_resnet
x = conv_block(x, 3, [64, 64, 256], stage=2, block='a', strides=(1, 1))
File "/Users/MichaelYan/sam/dcn_resnet.py", line 66, in conv_block
x = merge([x, shortcut], mode='sum')
TypeError: 'module' object is not callable
Any ideas for the cause? Thanks!