Python?torch.fft.rfft()函數(shù)用法示例代碼
在新舊版的torch中的傅里葉變換函數(shù)在定義和用法上存在不同,記錄一下。
1、舊版
fft = torch.rfft(input, 2, normalized=True, onesided=False) # input 為輸入的圖片或者向量,dtype=torch.float32,size比如為[1,3,64,64] # signal_ndim(int):The number of dimensions in each signal,can only be 1、2、3 # normalized(bool,optional):controls wheather to return normallized results. Default:False # onesided(bool,optional):controls whether to return half of results to avoid redundancy.Default:True
上面例子中圖像中 singal_ndim = 2 ,是因?yàn)檩斎雸D像是2維的。
1.7之后的版本中,如果要用 oneside output,則改用torch.fft.rfft();如果要用two-side output,則改用torch.fft.fft()
input= torch.arange(4) fft = torch.rfft(input, 2, normalized=True, onesided=False)
2、新版
一維離散傅里葉變換
torch.fft.rfft(input,n=None,dim=-1,norm=None) --> Tensor
# input:Tensor
# n(int,optional):Output signal length. This determines the length of the
output signal.
# dim(int, optional): The dimension along which to take the one dimensional real IFFT.
# norm (str, optional): Normalization mode.
二維離散傅里葉變換
torch.fft.rfft2(input, s=None, dim=(-2, -1), norm=None, *, out=None) -> Tensor input (Tensor): the input tensor s (Tuple[int], optional): Signal size in the transformed dimensions. dim (Tuple[int], optional): Dimensions to be transformed. norm (str, optional): Normalization mode.
高維離散傅里葉變換
rfftn(input, s=None, dim=None, norm=None, *, out=None) -> Tensor input (Tensor): the input tensor s (Tuple[int], optional): Signal size in the transformed dimensions. dim (Tuple[int], optional): Dimensions to be transformed. norm (str, optional): Normalization mode. For the forward transform
3、新舊版對比
import torch input = torch.rand(1,3,32,32) # 舊版pytorch.rfft()函數(shù) fft = torch.rfft(input, 2, normalized=True, onesided=False) # 新版 pytorch.fft.rfft2()函數(shù) output = torch.fft.fft2(input, dim=(-2, -1)) output = torch.stack((output.real, output_new.imag), -1)
ffted = torch.rfft(input, 1, onesided=False) to ffted = torch.view_as_real(torch.fft.fft(input, dim=1)) and iffted = torch.irfft(time_step_as_inner, 1, onesided=False) to iffted = torch.fft.irfft(torch.view_as_complex(time_step_as_inner), n=time_step_as_inner.shape[1], dim=1)
補(bǔ)充:使用numpy模擬torch.fft.fft拯救paddle
import numpy as np
import torch
import paddle
def paddle_fft(x,dim=-1):
if dim==-1:
return paddle.to_tensor(np.fft.fft(x.numpy()))
else:
shape= [i for i in range(len(x.shape))]
shape[dim],shape[-1]=shape[-1],shape[dim]
x=np.transpose(np.fft.fft(np.transpose(x.numpy(), shape)),shape)
return paddle.to_tensor(x)
if __name__ == '__main__':
data=paddle.to_tensor(np.array([[[1, 4, 3], [1, 2, 3]], [[1, 2, 3], [1, 2, 3]]]))
paddle_f_d=paddle_fft(paddle_fft(data,-1),-2)
torch_f_d =paddle_fft(torch.fft.fft(torch.Tensor(data.numpy()),dim=-1),-2)
print(paddle_f_d.numpy())
print(torch_f_d.numpy())
總結(jié)
到此這篇關(guān)于Python torch.fft.rfft()函數(shù)用法的文章就介紹到這了,更多相關(guān)torch.fft.rfft()函數(shù)用法內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
Python發(fā)布 Web應(yīng)用的常見方法及詳細(xì)步驟
本文詳細(xì)介紹了Python發(fā)布Web應(yīng)用的常見方法,包括本地開發(fā)、Nginx+Gunicorn部署、Heroku一鍵部署、Docker容器化部署和Serverless部署,并提供了每種方法的詳細(xì)步驟和優(yōu)缺點(diǎn)對比,需要的朋友可以參考下2025-03-03
Python列表排序 list.sort方法和內(nèi)置函數(shù)sorted用法
這篇文章主要介紹了Python列表排序 list.sort方法和內(nèi)置函數(shù)sorted用法,具有很好的參考價(jià)值,希望對大家有所幫助。一起跟隨小編過來看看吧2021-03-03

