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
at line287 x = Lambda(lambda z: z[:, :, :, c * grouped_channels:(c + 1) * grouped_channels] if K.image_data_format() == 'channels_last' else lambda z: z[:, c * grouped_channels:(c + 1) * grouped_channels, :, :])(input)
this cannot be compiled.I try to define two functions to replace lambda,and then it works!
AttributeError: 'function' object has no attribute 'get_shape'` #5987
The text was updated successfully, but these errors were encountered:
What are the functions that you are defining ? There is no error for Tensorflow backend with TF din ordering. I have not yet set it up for Theano channels first dim ordering.
at line287
x = Lambda(lambda z: z[:, :, :, c * grouped_channels:(c + 1) * grouped_channels] if K.image_data_format() == 'channels_last' else lambda z: z[:, c * grouped_channels:(c + 1) * grouped_channels, :, :])(input)
this cannot be compiled.I try to define two functions to replace lambda,and then it works!
AttributeError: 'function' object has no attribute 'get_shape'` #5987
The text was updated successfully, but these errors were encountered: