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

Commit

Permalink
Merge pull request #205 from yt605155624/fix_inf
Browse files Browse the repository at this point in the history
fix path of stft
  • Loading branch information
yt605155624 authored Oct 28, 2021
2 parents b09dbe3 + 043920e commit c61191e
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 c61191e

Please sign in to comment.