transform_compute_deltas {torchaudio} | R Documentation |
Delta Coefficients
Description
Compute delta coefficients of a tensor, usually a spectrogram.
Usage
transform_compute_deltas(win_length = 5, mode = "replicate")
Arguments
win_length |
(int): The window length used for computing delta. (Default: |
mode |
(str): Mode parameter passed to padding. (Default: |
Details
forward param: specgram (Tensor): Tensor of audio of dimension (..., freq, time).
See functional_compute_deltas for more details.
Value
Tensor: Tensor of deltas of dimension (..., freq, time).
[Package torchaudio version 0.3.1 Index]