in count_sketch.py ,,,,,,,,,conved = tf.batch_ifft(tf.batch_fft(pc1) * tf.batch_fft(pc2))
Opened this issue · 1 comments
haibin894609937 commented
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?
manupillai308 commented
Yes. I have ran the test script provided. For newer versions of tensorflow,
tf.ifft
& tf.fft
must be used.