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
Thanks for your codes. May I have a question in tfwavelets.nodes.dwt2d. In the case that level = 1,
last_level = tf.slice(input_node, [0, 0, 0], [first_m, first_n, 1]) has the shape of m // 2, n // 2;
but detail_tr = tf.slice(input_node, [local_m // 2, 0, 0], [local_n // 2, local_m // 2, 1]) has the shape of n // 2, m // 2; and it leads to an error in the following concatenate: upper_half = tf.concat([last_level, detail_tr], 0)?
Thanks a lot
The text was updated successfully, but these errors were encountered:
Hi,
Thanks for your codes. May I have a question in tfwavelets.nodes.dwt2d. In the case that level = 1,
last_level = tf.slice(input_node, [0, 0, 0], [first_m, first_n, 1]) has the shape of m // 2, n // 2;
but detail_tr = tf.slice(input_node, [local_m // 2, 0, 0], [local_n // 2, local_m // 2, 1]) has the shape of n // 2, m // 2; and it leads to an error in the following concatenate: upper_half = tf.concat([last_level, detail_tr], 0)?
Thanks a lot
The text was updated successfully, but these errors were encountered: