Skip to content

Commit

Permalink
fix(pqmf): fix broken scipy imports in _pqmf.py (#1139)
Browse files Browse the repository at this point in the history
importing `kaiser` from scipy.signal.windows
  • Loading branch information
Priyanshu-hawk committed Apr 6, 2024
1 parent 9f9ecfe commit b7639ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/so_vits_svc_fork/modules/decoders/mb_istft/_pqmf.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import numpy as np
import torch
import torch.nn.functional as F
from scipy.signal import kaiser
from scipy.signal.windows import kaiser


def design_prototype_filter(taps=62, cutoff_ratio=0.15, beta=9.0):
Expand Down

0 comments on commit b7639ca

Please sign in to comment.