Update config.py

This commit is contained in:
RVC-Boss 2023-07-26 11:36:27 +08:00 committed by GitHub
parent c757674425
commit 98b2e752f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ from multiprocessing import cpu_count
def use_fp32_config():
for config_file in ["32k.json", "40k.json", "48k.json"]:
for config_file in ["32k.json", "40k.json", "48k.json", "48k_v2.json", "32k_v2.json"]:
with open(f"configs/{config_file}", "r") as f:
strr = f.read().replace("true", "false")
with open(f"configs/{config_file}", "w") as f: