From 18d4ed3dc42184295e269f9acb7567b94d312921 Mon Sep 17 00:00:00 2001 From: erogol Date: Mon, 22 Jun 2020 14:52:45 +0200 Subject: [PATCH] replace n_fft with fft_size --- config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.json b/config.json index 53b12fe1..bdeecdea 100644 --- a/config.json +++ b/config.json @@ -6,7 +6,7 @@ // AUDIO PARAMETERS "audio":{ // stft parameters - "num_freq": 513, // number of stft frequency levels. Size of the linear spectogram frame. + "fft_size": 1024, // number of stft frequency levels. Size of the linear spectogram frame. "win_length": 1024, // stft window length in ms. "hop_length": 256, // stft window hop-lengh in ms. "frame_length_ms": null, // stft window length in ms.If null, 'win_length' is used.