From e91026577d2f9781ef247849cb867b8406b4bdd2 Mon Sep 17 00:00:00 2001 From: Alexey Shmelev Date: Sun, 29 Sep 2024 06:44:51 -0400 Subject: [PATCH] Fixed autotune.. does it do anything? Not really. --- rvc/infer/pipeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rvc/infer/pipeline.py b/rvc/infer/pipeline.py index 7c8f58c1f..0b78fd908 100644 --- a/rvc/infer/pipeline.py +++ b/rvc/infer/pipeline.py @@ -357,7 +357,7 @@ def get_f0( hop_length, ) - if f0_autotune == "True": + if f0_autotune is True: f0 = Autotune.autotune_f0(self, f0) f0 *= pow(2, pitch / 12)