transform_compute_deltas.Rd
Compute delta coefficients of a tensor, usually a spectrogram.
transform_compute_deltas(win_length = 5, mode = "replicate")
(int): The window length used for computing delta. (Default: 5
)
(str): Mode parameter passed to padding. (Default: 'replicate'
)
Tensor: Tensor of deltas of dimension (..., freq, time).
forward param: specgram (Tensor): Tensor of audio of dimension (..., freq, time).
See functional_compute_deltas for more details.