functional_sliding_window_cmn.Rd
Apply sliding-window cepstral mean (and optionally variance) normalization per utterance.
functional_sliding_window_cmn(
waveform,
cmn_window = 600,
min_cmn_window = 100,
center = FALSE,
norm_vars = FALSE
)
(Tensor): Tensor of audio of dimension (..., freq, time)
(int, optional): Window in frames for running average CMN computation (int, default = 600)
(int, optional): Minimum CMN window used at start of decoding (adds latency only at start).
Only applicable if center == FALSE
, ignored if center==TRUE
(int, default = 100)
(bool, optional): If TRUE
, use a window centered on the current frame
(to the extent possible, modulo end effects). If FALSE
, window is to the left. (bool, default = FALSE
)
(bool, optional): If TRUE
, normalize variance to one. (bool, default = FALSE
)
tensor
: Tensor of freq of dimension (..., frame)