快捷方式

torchaudio.functional.psd

torchaudio.functional.psd(specgram: Tensor, mask: Optional[Tensor] = None, normalize: bool = True, eps: float = 1e-10) Tensor[源代码]

计算跨通道功率谱密度 (PSD) 矩阵。

This feature supports the following devices: CPU, CUDA This API supports the following properties: Autograd, TorchScript
参数:
  • specgram (torch.Tensor) – 多通道复值谱。具有维度 (…, channel, freq, time) 的张量。

  • mask (torch.TensorNone, 可选) – 用于归一化的时频掩码。具有维度 (…, freq, time) 的张量。 (默认值: None)

  • normalize (bool, 可选) – 如果为 True,则沿时间维度对掩码进行归一化。 (默认值: True)

  • eps (float, 可选) – 在掩码归一化中添加到分母的值。 (默认值: 1e-15)

返回值:

输入频谱的复值 PSD 矩阵。具有维度 (…, freq, channel, channel) 的张量

返回类型:

torch.Tensor

文档

访问 PyTorch 的综合开发者文档

查看文档

教程

获取针对初学者和高级开发者的深入教程

查看教程

资源

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

查看资源