Skip to content

Commit

Permalink
Comment out forcing odd win_size
Browse files Browse the repository at this point in the history
  • Loading branch information
RichieHakim committed Feb 3, 2024
1 parent ae50a1c commit 3a69cd9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion vqt/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,8 @@ def make_VQT_filters(
shape: (n_freq_bins, win_size)
"""

assert win_size%2==1, "RH Error: win_size should be an odd integer"
# if win_size % 2 != 1:
# raise ValueError("RH Error: win_size should be an odd integer")

## Make frequencies. Use a geometric spacing.
freqs = np.geomspace(
Expand Down

0 comments on commit 3a69cd9

Please sign in to comment.