therne/compact-bilinear-pooling-tf

in count_sketch.py ,,,,,,,,,conved = tf.batch_ifft(tf.batch_fft(pc1) * tf.batch_fft(pc2))

Opened this issue · 1 comments

conved = tf.batch_ifft(tf.batch_fft(pc1) * tf.batch_fft(pc2))

in tensorflow r1.3

conved = tf.ifft(tf.fft(pc1) * tf.fft(pc2))
is it right?

Yes. I have ran the test script provided. For newer versions of tensorflow,
tf.ifft & tf.fft must be used.