Skip to content

Commit 3bc633d

Browse files
committed
Refactor VQT_Analyzer parameters in test_pipeline_tracking_simple for improved clarity and functionality
1 parent c228b44 commit 3bc633d

File tree

1 file changed

+17
-14
lines changed

1 file changed

+17
-14
lines changed

tests/test_integration.py

Lines changed: 17 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -110,21 +110,24 @@ def test_pipeline_tracking_simple(dir_data_test):
110110
},
111111
"VQT_Analyzer": {
112112
"params_VQT": {
113-
"Q_lowF": 4,
114-
"Q_highF": 10,
115-
"F_min": 1.0,
116-
"F_max": 60,
117-
"n_freq_bins": 36,
118-
"win_size": 501,
119-
"symmetry": 'center',
120-
"taper_asymmetric": True,
121-
"plot_pref": False,
122-
"downsample_factor": 20,
123-
"padding": "valid",
124-
"batch_size": 10,
125-
"return_complex": False,
126-
"progressBar": True,
113+
'Fs_sample': 120,
114+
'Q_lowF': 4.0,
115+
'Q_highF': 10.0,
116+
'F_min': 1.0,
117+
'F_max': 60,
118+
'n_freq_bins': 36,
119+
'window_type': 'hann',
120+
'symmetry': 'center',
121+
'taper_asymmetric': True,
122+
'downsample_factor': 20,
123+
'padding': 'valid',
124+
'fft_conv': True,
125+
'fast_length': True,
126+
'take_abs': True,
127+
'filters': None,
128+
'plot_pref': False,
127129
},
130+
"batch_size": 10,
128131
"normalization_factor": 0.95,
129132
"spectrogram_exponent": 1.0,
130133
"one_over_f_exponent": 0.5,

0 commit comments

Comments
 (0)