快捷方式

MuLaw解码

class torchaudio.transforms.MuLawDecoding(quantization_channels: int = 256)[source]

解码 mu-law 编码的信号。

This feature supports the following devices: CPU, CUDA This API supports the following properties: TorchScript

更多信息请参见 维基百科条目

它期望输入的值介于 0 和 quantization_channels - 1 之间,并返回一个缩放至 -1 到 1 之间的信号。

参数:

quantization_channels (int, 可选) – 通道数。 (默认值:256)

示例
>>> waveform, sample_rate = torchaudio.load("test.wav", normalize=True)
>>> transform = torchaudio.transforms.MuLawDecoding(quantization_channels=512)
>>> mulawtrans = transform(waveform)
forward(x_mu: Tensor) Tensor[source]
参数:

x_mu (Tensor) – 需要解码的 mu-law 编码信号。

返回:

解码后的信号。

返回类型:

Tensor

文档

访问 PyTorch 的全面开发者文档

查看文档

教程

获取适合初学者和高级开发人员的深入教程

查看教程

资源

查找开发资源并解答您的问题

查看资源