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
Before using deform_conv_2d(),convert the input format to NCHW:tf.transpose(img, [0, 3, 1, 2]);
And convert the function output to NHWC:tf.transpose(img, [0, 2, 3, 1]).
I meet the same issue, and I found the arg data_format of deform_conv_op is useless.
Only make sure input a tensor with NCHW can the op data_format work.
when i build my own model,in this step:
i meet the errror:
look forward to hearing from you.
@Zardinality
The text was updated successfully, but these errors were encountered: