Skip to content

Commit

Permalink
Adaption to new scipy version
Browse files Browse the repository at this point in the history
  • Loading branch information
sibange committed May 8, 2024
1 parent 3b7266a commit 3a77c69
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nara_wpe/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def stft(
size,
shift,
axis=-1,
window=signal.blackman,
window=signal.windows.blackman,
window_length=None,
fading=True,
pad=True,
Expand Down Expand Up @@ -327,7 +327,7 @@ def istft(
stft_signal,
size=1024,
shift=256,
window=signal.blackman,
window=signal.windows.blackman,
fading=True,
window_length=None,
symmetric_window=False,
Expand Down Expand Up @@ -411,7 +411,7 @@ def istft(


def istft_single_channel(stft_signal, size=1024, shift=256,
window=signal.blackman, fading=True, window_length=None,
window=signal.windows.blackman, fading=True, window_length=None,
use_amplitude_for_biorthogonal_window=False,
disable_sythesis_window=False):
"""
Expand Down

0 comments on commit 3a77c69

Please sign in to comment.