【发布时间】:2015-11-15 23:14:40
【问题描述】:
我知道theano.tensor.fourier.fft is essentially numpy.fft.fft。但是,我想知道是否实施了逆 FFT?即,是否有类似theano.tensor.fourier.ifft,相当于numpy.fft.ifft?
我注意到this 有它,但我不确定它对于做我想做的事情有多完整或可靠。也许对 Theano 有更深入了解的人可以在这里权衡一下。
另外,如果我要使用这个沙盒傅里叶,我会怎么做呢?只需调用theano.sandbox.fourier.fft(x),其中x 是一维张量,就会返回错误:
AttributeError: 'module' object has no attribute 'fourier'
有没有办法解决这个问题?
【问题讨论】:
-
显示您尝试过的代码。
标签: python numpy fft theano ifft