From a96077b1e53e705ed2fb18f6010e41d944dc6710 Mon Sep 17 00:00:00 2001 From: litagin02 Date: Sat, 23 Dec 2023 13:32:08 +0900 Subject: [PATCH] Fix bug: not override version in config.json --- preprocess_text.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/preprocess_text.py b/preprocess_text.py index 8a21bf3..4cb8582 100644 --- a/preprocess_text.py +++ b/preprocess_text.py @@ -125,7 +125,7 @@ def preprocess( json_config["data"]["spk2id"] = spk_id_map json_config["data"]["n_speakers"] = len(spk_id_map) # 新增写入:写入训练版本、数据集路径 - json_config["version"] = latest_version + # json_config["version"] = latest_version json_config["data"]["training_files"] = os.path.normpath(train_path).replace( "\\", "/" )