1
0
mirror of https://github.com/fumiama/Retrieval-based-Voice-Conversion-WebUI.git synced 2026-06-07 19:40:44 +08:00

fix(backwardscomp): fix the rest of np.ndarray type subscriptions (#57)

forgot about these ones, my bad
This commit is contained in:
Alex Murkoff
2024-06-14 23:40:59 +07:00
committed by GitHub
parent c7779116c5
commit 4260b1e47f
6 changed files with 6 additions and 6 deletions

View File

@@ -28,7 +28,7 @@ class FCPE(F0Predictor):
def compute_f0(
self,
wav: np.ndarray[Any, np.dtype],
wav: np.ndarray,
p_len: Optional[int] = None,
filter_radius: Optional[Union[int, float]] = 0.006,
):