Skip to content
This repository has been archived by the owner on Sep 11, 2022. It is now read-only.

Commit

Permalink
fix path of stft
Browse files Browse the repository at this point in the history
  • Loading branch information
yt605155624 committed Oct 28, 2021
1 parent 041a18b commit 043920e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parakeet/modules/stft_loss.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def stft(x,
# calculate window
window = signal.get_window(window, win_length, fftbins=True)
window = paddle.to_tensor(window)
x_stft = paddle.tensor.signal.stft(
x_stft = paddle.signal.stft(
x,
fft_size,
hop_length,
Expand Down

0 comments on commit 043920e

Please sign in to comment.