本文简要介绍python语言中 torchaudio.functional.phase_vocoder
的用法。
用法:
torchaudio.functional.phase_vocoder(complex_specgrams: torch.Tensor, rate: float, phase_advance: torch.Tensor) → torch.Tensor
complex_specgrams(Tensor) -
(…, freq, num_frame, complex=2)
维度的实数张量或具有复杂 dtype 的维度(…, freq, num_frame)
的张量。rate(float) -加速系数
phase_advance(Tensor) -每个 bin 中的预期相位提前。
(freq, 1)
的尺寸
拉伸频谱图。生成的张量与输入频谱图具有相同的 dtype,但帧数更改为
ceil(num_frame / rate)
。Tensor
给定一个 STFT 张量,在不以
rate
系数修改音高的情况下及时加速。- 示例 - 使用复杂 dtype 的张量
>>> freq, hop_length = 1025, 512 >>> # (channel, freq, time) >>> complex_specgrams = torch.randn(2, freq, 300, dtype=torch.cfloat) >>> rate = 1.3 # Speed up by 30% >>> phase_advance = torch.linspace( >>> 0, math.pi * hop_length, freq)[..., None] >>> x = phase_vocoder(complex_specgrams, rate, phase_advance) >>> x.shape # with 231 == ceil(300 / 1.3) torch.Size([2, 1025, 231])
- 示例 - 具有真实 dtype 的张量和复杂字段的额外维度
>>> freq, hop_length = 1025, 512 >>> # (channel, freq, time, complex=2) >>> complex_specgrams = torch.randn(2, freq, 300, 2) >>> rate = 1.3 # Speed up by 30% >>> phase_advance = torch.linspace( >>> 0, math.pi * hop_length, freq)[..., None] >>> x = phase_vocoder(complex_specgrams, rate, phase_advance) >>> x.shape # with 231 == ceil(300 / 1.3) torch.Size([2, 1025, 231, 2])
参数:
返回:
返回类型:
相关用法
- Python PyTorch positive用法及代码示例
- Python PyTorch promote_types用法及代码示例
- Python PyTorch powerSGD_hook用法及代码示例
- Python PyTorch pca_lowrank用法及代码示例
- Python PyTorch pixel_shuffle用法及代码示例
- Python PyTorch pinv用法及代码示例
- Python PyTorch profile用法及代码示例
- Python PyTorch put_metric用法及代码示例
- Python PyTorch pad_sequence用法及代码示例
- Python PyTorch pow用法及代码示例
- Python PyTorch pop用法及代码示例
- Python PyTorch prepare用法及代码示例
- Python PyTorch polar用法及代码示例
- Python PyTorch poisson用法及代码示例
- Python PyTorch pack_sequence用法及代码示例
- Python PyTorch pad用法及代码示例
- Python PyTorch pad_packed_sequence用法及代码示例
- Python PyTorch pixel_unshuffle用法及代码示例
- Python PyTorch polygamma用法及代码示例
- Python PyTorch permute用法及代码示例
- Python PyTorch prod用法及代码示例
- Python PyTorch prof用法及代码示例
- Python PyTorch frexp用法及代码示例
- Python PyTorch jvp用法及代码示例
- Python PyTorch cholesky用法及代码示例
注:本文由纯净天空筛选整理自pytorch.org大神的英文原创作品 torchaudio.functional.phase_vocoder。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。