functional_compute_deltas | R Documentation |
Compute delta coefficients of a tensor, usually a spectrogram.
functional_compute_deltas(specgram, win_length = 5, mode = "replicate")
specgram |
(Tensor): Tensor of audio of dimension (..., freq, time) |
win_length |
(int, optional): The window length used for computing delta (Default: |
mode |
(str, optional): Mode parameter passed to padding (Default: |
math:
d_t = \frac{∑_{n=1}^{N} n (c_{t+n} - c_{t-n})}{2 ∑_{n=1}^{N} n^2}
where d_t
is the deltas at time t
, c_t
is the spectrogram coeffcients at time t
,
N
is (win_length-1) %/% 2
.
tensor
: Tensor of deltas of dimension (..., freq, time)
if(torch::torch_is_installed()) { library(torch) library(torchaudio) specgram = torch_randn(1, 40, 1000) delta = functional_compute_deltas(specgram) delta2 = functional_compute_deltas(delta) }
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.