File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 11# Releases
22
3+ ## 0.3.2
4+ * Avoid GC pressure by doing most of the operations in ` stft ` and
5+ ` mfcc ` in-place.
6+
37## 0.3.1
48* Renamed ` FilterBank ` to ` filterbank ` to homogenize the user interface.
59 The previous ` FilterBank ` function is still exported but is mark
Original file line number Diff line number Diff line change 11name = " SpeechFeatures"
22uuid = " 6f3487c4-5ca2-4050-bfeb-2cf56df92307"
33authors = [
" Lucas Ondel <[email protected] " ]
4- version = " 0.3.1 "
4+ version = " 0.3.2 "
55
66[deps ]
77FFTW = " 7a1cc6ca-52ef-59f5-83cd-3a7055c09341"
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ using SpeechFeatures
3131# fs = ... sampling frequency
3232
3333S, fftlen = stft (x; srate= fs) # Complex short-term spectrum.
34- fbank = FilterBank (26 ; fftlen= fftlen)
34+ fbank = filterbank (26 ; fftlen= fftlen)
3535mS = fbank * abs .(S) # Magnitude of the Mel-spectrum.
3636MFCCs = mfcc (mS; nceps= 13 ) # Standard MFCCs.
3737MFCCs_Δ_ΔΔ = add_deltas (MFCCs; order= 2 ) # MFCCs + 1st and 2nd order derivatives.
You can’t perform that action at this time.
0 commit comments