Shortcuts

torchaudio.functional.preemphasis

torchaudio.functional.preemphasis(waveform, coeff: float = 0.97) Tensor[source]

Pre-emphasizes a waveform along its last dimension, i.e. for each signal \(x\) in waveform, computes output \(y\) as

\[y[i] = x[i] - \text{coeff} \cdot x[i - 1] \]
This feature supports the following devices: CPU, CUDA This API supports the following properties: Autograd, TorchScript
Parameters:
  • waveform (torch.Tensor) – Waveform, with shape (…, N).

  • coeff (float, optional) – Pre-emphasis coefficient. Typically between 0.0 and 1.0. (Default: 0.97)

Returns:

Pre-emphasized waveform, with shape (…, N).

Return type:

torch.Tensor

Docs

Access comprehensive developer documentation for PyTorch

View Docs

Tutorials

Get in-depth tutorials for beginners and advanced developers

View Tutorials

Resources

Find development resources and get your questions answered

View Resources