2026-07-19 21:17:17 +08:00
|
|
|
|
import os
|
|
|
|
|
|
import shutil
|
2026-07-23 22:00:19 +08:00
|
|
|
|
import html
|
2026-08-04 15:47:05 +08:00
|
|
|
|
import copy
|
|
|
|
|
|
import re
|
|
|
|
|
|
import warnings
|
|
|
|
|
|
|
|
|
|
|
|
warnings.filterwarnings(
|
|
|
|
|
|
"ignore",
|
|
|
|
|
|
message=r"pkg_resources is deprecated as an API.*",
|
|
|
|
|
|
category=UserWarning,
|
|
|
|
|
|
)
|
2026-07-19 21:17:17 +08:00
|
|
|
|
|
2026-07-21 14:48:28 +08:00
|
|
|
|
# Offline WebUI keeps the CUDA Graph implementation available, but remains
|
|
|
|
|
|
# eager by default. Set RVC_OFFLINE_CUDA_GRAPH=1 to opt in for benchmarking or
|
|
|
|
|
|
# controlled deployments.
|
|
|
|
|
|
_offline_cuda_graph = os.environ.get("RVC_OFFLINE_CUDA_GRAPH", "0") == "1"
|
|
|
|
|
|
os.environ["RVC_CUDA_GRAPH"] = "1" if _offline_cuda_graph else "0"
|
|
|
|
|
|
|
2026-07-19 21:17:17 +08:00
|
|
|
|
os.environ.setdefault("OPENBLAS_NUM_THREADS", "1")
|
|
|
|
|
|
os.environ.setdefault("no_proxy", "localhost, 127.0.0.1, ::1")
|
|
|
|
|
|
os.environ.setdefault("weight_root", "assets/weights")
|
2026-07-23 01:40:12 +08:00
|
|
|
|
os.environ.setdefault("weight_pymss_root", "assets/pymss_weights")
|
2026-07-19 21:17:17 +08:00
|
|
|
|
os.environ.setdefault("index_root", "logs")
|
|
|
|
|
|
os.environ.setdefault("outside_index_root", "assets/indices")
|
|
|
|
|
|
os.environ.setdefault("rmvpe_root", "assets/rmvpe")
|
|
|
|
|
|
|
|
|
|
|
|
now_dir = os.getcwd()
|
|
|
|
|
|
tmp = os.path.join(now_dir, "TEMP")
|
|
|
|
|
|
os.makedirs(tmp, exist_ok=True)
|
|
|
|
|
|
os.environ["TEMP"] = tmp
|
|
|
|
|
|
for name in os.listdir(tmp):
|
|
|
|
|
|
if name == "jieba.cache":
|
|
|
|
|
|
continue
|
|
|
|
|
|
path = os.path.join(tmp, name)
|
|
|
|
|
|
delete = (
|
|
|
|
|
|
os.remove if os.path.isfile(path) or os.path.islink(path) else shutil.rmtree
|
|
|
|
|
|
)
|
|
|
|
|
|
try:
|
|
|
|
|
|
delete(path)
|
|
|
|
|
|
except Exception as error:
|
|
|
|
|
|
print(str(error))
|
|
|
|
|
|
|
2026-07-20 22:34:58 +08:00
|
|
|
|
from configs.config import Config, GPU_INDEX, GPU_INFOS, GPU_MEMORY, IS_GPU
|
2026-07-19 21:17:17 +08:00
|
|
|
|
from infer.vc.modules import VC
|
2026-08-04 15:47:05 +08:00
|
|
|
|
from infer.vc.utils import get_index_path_from_model
|
2026-07-23 22:00:19 +08:00
|
|
|
|
from tools.pymss_webui import (
|
|
|
|
|
|
PYMSS_MODEL_CHOICES,
|
|
|
|
|
|
get_model_info,
|
|
|
|
|
|
pymss_separate as _pymss_separate_core,
|
|
|
|
|
|
stop_pymss_separation as _stop_pymss_separation_core,
|
|
|
|
|
|
)
|
2026-07-19 21:17:17 +08:00
|
|
|
|
from tools.file_io import read_text
|
2026-07-23 22:00:19 +08:00
|
|
|
|
from tools.process_utils import kill_process_tree
|
2026-08-04 15:47:05 +08:00
|
|
|
|
from tools.multispeaker import (
|
|
|
|
|
|
ManifestError,
|
|
|
|
|
|
build_manifest_from_root,
|
|
|
|
|
|
build_manifest_from_rows,
|
|
|
|
|
|
load_manifest,
|
|
|
|
|
|
write_manifest,
|
|
|
|
|
|
)
|
2026-07-19 21:17:17 +08:00
|
|
|
|
from train.process_ckpt import (
|
|
|
|
|
|
change_info,
|
|
|
|
|
|
extract_small_model,
|
|
|
|
|
|
merge,
|
|
|
|
|
|
show_info,
|
|
|
|
|
|
)
|
|
|
|
|
|
from i18n.i18n import I18nAuto
|
|
|
|
|
|
import torch, platform
|
|
|
|
|
|
import numpy as np
|
|
|
|
|
|
import gradio as gr
|
|
|
|
|
|
import pathlib
|
|
|
|
|
|
import json
|
|
|
|
|
|
from time import sleep
|
|
|
|
|
|
from subprocess import Popen
|
|
|
|
|
|
from random import shuffle
|
|
|
|
|
|
import traceback
|
|
|
|
|
|
import threading
|
|
|
|
|
|
import logging
|
|
|
|
|
|
import socket
|
|
|
|
|
|
import subprocess
|
|
|
|
|
|
import time
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
logging.getLogger("numba").setLevel(logging.WARNING)
|
|
|
|
|
|
logging.getLogger("httpx").setLevel(logging.WARNING)
|
|
|
|
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def find_available_port(start_port, host="0.0.0.0"):
|
|
|
|
|
|
"""Return the first bindable TCP port at or above ``start_port``."""
|
|
|
|
|
|
if not 1 <= start_port <= 65535:
|
|
|
|
|
|
raise ValueError(f"Port must be between 1 and 65535, got {start_port}.")
|
|
|
|
|
|
|
|
|
|
|
|
for port in range(start_port, 65536):
|
|
|
|
|
|
try:
|
|
|
|
|
|
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as sock:
|
|
|
|
|
|
sock.bind((host, port))
|
|
|
|
|
|
return port
|
|
|
|
|
|
except OSError:
|
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
|
|
raise OSError(
|
|
|
|
|
|
f"No available TCP port from {start_port} through 65535; WebUI was not started."
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def is_gradio_port_in_use_error(error, port):
|
|
|
|
|
|
"""Recognize Gradio's explicit-port conflict without hiding other launch errors."""
|
|
|
|
|
|
return str(error).startswith(f"Port {port} is in use.")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def launch_webui_with_port_fallback(app, config):
|
|
|
|
|
|
"""Launch Gradio, increasing the requested port until startup succeeds."""
|
|
|
|
|
|
next_port = config.listen_port
|
|
|
|
|
|
queued_app = app.queue(concurrency_count=511, max_size=1022)
|
|
|
|
|
|
while True:
|
|
|
|
|
|
config.listen_port = find_available_port(next_port)
|
|
|
|
|
|
if config.listen_port != next_port:
|
|
|
|
|
|
logger.warning(
|
|
|
|
|
|
"Port %s is occupied; trying port %s instead.",
|
|
|
|
|
|
next_port,
|
|
|
|
|
|
config.listen_port,
|
|
|
|
|
|
)
|
|
|
|
|
|
try:
|
|
|
|
|
|
queued_app.launch(
|
|
|
|
|
|
server_name="0.0.0.0",
|
|
|
|
|
|
inbrowser=not config.noautoopen,
|
|
|
|
|
|
server_port=config.listen_port,
|
|
|
|
|
|
quiet=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
return config.listen_port
|
|
|
|
|
|
except OSError as error:
|
|
|
|
|
|
if not is_gradio_port_in_use_error(error, config.listen_port):
|
|
|
|
|
|
raise
|
|
|
|
|
|
if config.listen_port == 65535:
|
|
|
|
|
|
raise OSError(
|
|
|
|
|
|
"No available TCP port through 65535; WebUI was not started."
|
|
|
|
|
|
) from error
|
|
|
|
|
|
logger.warning(
|
|
|
|
|
|
"Port %s became occupied while Gradio was starting; trying the next port.",
|
|
|
|
|
|
config.listen_port,
|
|
|
|
|
|
)
|
|
|
|
|
|
next_port = config.listen_port + 1
|
|
|
|
|
|
|
2026-07-19 22:23:01 +08:00
|
|
|
|
runtime_dirs = (
|
|
|
|
|
|
os.path.join(now_dir, "logs"),
|
|
|
|
|
|
os.environ["weight_root"],
|
2026-07-23 01:40:12 +08:00
|
|
|
|
os.environ["weight_pymss_root"],
|
2026-07-19 22:23:01 +08:00
|
|
|
|
os.environ["index_root"],
|
|
|
|
|
|
os.environ["outside_index_root"],
|
|
|
|
|
|
os.environ["rmvpe_root"],
|
|
|
|
|
|
os.path.join(now_dir, "assets", "hubert_base"),
|
|
|
|
|
|
os.path.join(now_dir, "assets", "pretrained"),
|
|
|
|
|
|
os.path.join(now_dir, "assets", "pretrained_v2"),
|
|
|
|
|
|
)
|
|
|
|
|
|
for runtime_dir in runtime_dirs:
|
|
|
|
|
|
os.makedirs(runtime_dir, exist_ok=True)
|
2026-07-19 21:17:17 +08:00
|
|
|
|
warnings.filterwarnings("ignore")
|
|
|
|
|
|
torch.manual_seed(114514)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
config = Config()
|
|
|
|
|
|
vc = VC(config)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
i18n = I18nAuto()
|
|
|
|
|
|
logger.info(i18n)
|
|
|
|
|
|
print(
|
|
|
|
|
|
i18n("当前设备:%s | 推理精度:%s") % (config.device, config.dtype),
|
|
|
|
|
|
flush=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
# GPU filtering and precision rules are shared with inference/extraction/training.
|
|
|
|
|
|
gpu_infos = list(GPU_INFOS)
|
|
|
|
|
|
gpu_indices = sorted(GPU_INDEX)
|
|
|
|
|
|
if_gpu_ok = IS_GPU
|
|
|
|
|
|
if if_gpu_ok:
|
|
|
|
|
|
gpu_info = "\n".join(gpu_infos)
|
|
|
|
|
|
default_batch_size = max(1, int(min(GPU_MEMORY[i] for i in gpu_indices)) // 2)
|
|
|
|
|
|
else:
|
|
|
|
|
|
gpu_info = i18n("很遗憾您这没有能用的显卡来支持您训练")
|
|
|
|
|
|
default_batch_size = 1
|
|
|
|
|
|
gpus = "-".join(str(i) for i in gpu_indices)
|
2026-08-04 15:47:05 +08:00
|
|
|
|
feature_gpus = "%s-%s" % (gpus, gpus) if gpus else ""
|
|
|
|
|
|
default_training_f0_method = "rmvpe" if IS_GPU else "pm"
|
2026-07-19 21:17:17 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ToolButton(gr.Button, gr.components.FormComponent):
|
|
|
|
|
|
"""Small button with single emoji as text, fits inside gradio forms"""
|
|
|
|
|
|
|
|
|
|
|
|
def __init__(self, **kwargs):
|
|
|
|
|
|
super().__init__(variant="tool", **kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
def get_block_name(self):
|
|
|
|
|
|
return "button"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
weight_root = os.getenv("weight_root")
|
2026-07-23 01:40:12 +08:00
|
|
|
|
weight_pymss_root = os.getenv("weight_pymss_root")
|
2026-07-19 21:17:17 +08:00
|
|
|
|
outside_index_root = os.getenv("outside_index_root")
|
|
|
|
|
|
|
|
|
|
|
|
def weight_names():
|
|
|
|
|
|
return sorted(
|
|
|
|
|
|
name for name in os.listdir(weight_root) if name.endswith(".pth")
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def refresh_weight_choices(previous_names=None, force=False):
|
|
|
|
|
|
current_names = tuple(weight_names())
|
|
|
|
|
|
if force or current_names != previous_names:
|
|
|
|
|
|
return current_names, change_choices()
|
|
|
|
|
|
return current_names, {"__type__": "update"}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
names = weight_names()
|
2026-07-23 01:40:12 +08:00
|
|
|
|
pymss_names = PYMSS_MODEL_CHOICES
|
2026-07-19 21:17:17 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def change_choices():
|
|
|
|
|
|
return {"choices": weight_names(), "__type__": "update"}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def clean():
|
|
|
|
|
|
return {"value": "", "__type__": "update"}
|
|
|
|
|
|
|
|
|
|
|
|
|
2026-08-04 15:47:05 +08:00
|
|
|
|
def selected_speaker_id(slider_value, dropdown_value):
|
|
|
|
|
|
value = dropdown_value if dropdown_value is not None else slider_value
|
|
|
|
|
|
if isinstance(value, str):
|
|
|
|
|
|
match = re.search(r"ID\s*[::]\s*(\d+)\s*[))]?\s*$", value)
|
|
|
|
|
|
if match:
|
|
|
|
|
|
return int(match.group(1))
|
|
|
|
|
|
return int(value)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def normalize_index_path(file_index):
|
|
|
|
|
|
return (
|
|
|
|
|
|
str(file_index or "")
|
|
|
|
|
|
.strip(" ")
|
|
|
|
|
|
.strip('"')
|
|
|
|
|
|
.strip("\n")
|
|
|
|
|
|
.strip('"')
|
|
|
|
|
|
.strip(" ")
|
|
|
|
|
|
.replace("trained", "added")
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def report_missing_index(file_index):
|
|
|
|
|
|
index_path = normalize_index_path(file_index)
|
|
|
|
|
|
if index_path and not os.path.isfile(index_path):
|
|
|
|
|
|
message = i18n("索引文件不存在,将不使用索引继续推理:%s") % index_path
|
|
|
|
|
|
print(message, flush=True)
|
|
|
|
|
|
raise gr.Error(message)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def update_speaker_index(model_name, slider_value, dropdown_value):
|
|
|
|
|
|
try:
|
|
|
|
|
|
speaker_id = selected_speaker_id(slider_value, dropdown_value)
|
|
|
|
|
|
except (TypeError, ValueError):
|
|
|
|
|
|
speaker_id = None
|
|
|
|
|
|
path = get_index_path_from_model(model_name, speaker_id)
|
|
|
|
|
|
update = {"value": path, "__type__": "update"}
|
|
|
|
|
|
return update, dict(update)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def update_dropdown_speaker_index(model_name, dropdown_value):
|
|
|
|
|
|
return update_speaker_index(model_name, 0, dropdown_value)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def vc_single_with_speaker(slider_value, dropdown_value, *args):
|
|
|
|
|
|
return vc.vc_single(selected_speaker_id(slider_value, dropdown_value), *args)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def vc_multi_with_speaker(slider_value, dropdown_value, *args):
|
|
|
|
|
|
yield from vc.vc_multi(selected_speaker_id(slider_value, dropdown_value), *args)
|
|
|
|
|
|
|
|
|
|
|
|
|
2026-07-19 21:17:17 +08:00
|
|
|
|
sr_dict = {
|
|
|
|
|
|
"32k": 32000,
|
|
|
|
|
|
"40k": 40000,
|
|
|
|
|
|
"48k": 48000,
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-08-04 15:47:05 +08:00
|
|
|
|
MULTISPEAKER_PAGE_SIZE = 10
|
|
|
|
|
|
MULTISPEAKER_MAX_ROWS = 110
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def is_multispeaker_mode(training_mode):
|
|
|
|
|
|
return training_mode in ("多说话人", i18n("多说话人"))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def manifest_error_text(error):
|
|
|
|
|
|
text = i18n(error.key)
|
|
|
|
|
|
return text % error.values if error.values else text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def experiment_path(exp_name):
|
|
|
|
|
|
return os.path.join(now_dir, "logs", str(exp_name or "").strip())
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def prepare_multispeaker_manifest(trainset_dir, exp_name):
|
|
|
|
|
|
exp_path = experiment_path(exp_name)
|
|
|
|
|
|
try:
|
|
|
|
|
|
if str(trainset_dir or "").strip():
|
|
|
|
|
|
manifest = build_manifest_from_root(trainset_dir)
|
|
|
|
|
|
write_manifest(exp_path, manifest)
|
|
|
|
|
|
return manifest
|
|
|
|
|
|
return load_manifest(exp_path)
|
|
|
|
|
|
except ManifestError as error:
|
|
|
|
|
|
raise RuntimeError(manifest_error_text(error))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def load_experiment_manifest(exp_path):
|
|
|
|
|
|
try:
|
|
|
|
|
|
return load_manifest(exp_path)
|
|
|
|
|
|
except ManifestError as error:
|
|
|
|
|
|
raise RuntimeError(manifest_error_text(error))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def change_training_mode(training_mode):
|
|
|
|
|
|
multi = is_multispeaker_mode(training_mode)
|
|
|
|
|
|
label = (
|
|
|
|
|
|
i18n("多说话人训练集总文件夹路径")
|
|
|
|
|
|
if multi
|
|
|
|
|
|
else i18n("输入训练文件夹路径")
|
|
|
|
|
|
)
|
|
|
|
|
|
placeholder = i18n("留空则使用辅助页已提交的清单") if multi else ""
|
|
|
|
|
|
textbox_update = gr.Textbox.update(label=label, placeholder=placeholder)
|
|
|
|
|
|
if multi:
|
|
|
|
|
|
textbox_update["value"] = ""
|
|
|
|
|
|
return textbox_update, gr.Slider.update(visible=not multi)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def sync_exp_name(source_value, target_value):
|
|
|
|
|
|
if str(source_value or "") == str(target_value or ""):
|
|
|
|
|
|
return gr.Textbox.update()
|
|
|
|
|
|
return gr.Textbox.update(value=source_value)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def empty_multispeaker_rows():
|
|
|
|
|
|
rows = [["", "", "", ""] for _ in range(MULTISPEAKER_MAX_ROWS)]
|
|
|
|
|
|
rows[0] = ["", "", 0, 1]
|
|
|
|
|
|
rows[1] = ["", "", 1, 1]
|
|
|
|
|
|
return rows
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def sync_multispeaker_page(rows, active_count, page, values):
|
|
|
|
|
|
rows = [list(row) for row in (rows or empty_multispeaker_rows())]
|
|
|
|
|
|
while len(rows) < MULTISPEAKER_MAX_ROWS:
|
|
|
|
|
|
rows.append(["", "", "", ""])
|
|
|
|
|
|
start = int(page) * MULTISPEAKER_PAGE_SIZE
|
|
|
|
|
|
for slot in range(MULTISPEAKER_PAGE_SIZE):
|
|
|
|
|
|
index = start + slot
|
|
|
|
|
|
if index >= MULTISPEAKER_MAX_ROWS:
|
|
|
|
|
|
break
|
|
|
|
|
|
offset = slot * 4
|
|
|
|
|
|
rows[index] = [
|
|
|
|
|
|
values[offset],
|
|
|
|
|
|
values[offset + 1],
|
|
|
|
|
|
values[offset + 2],
|
|
|
|
|
|
values[offset + 3],
|
|
|
|
|
|
]
|
|
|
|
|
|
return rows
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def multispeaker_page_updates(rows, active_count, page):
|
|
|
|
|
|
active_count = max(2, min(MULTISPEAKER_MAX_ROWS, int(active_count)))
|
|
|
|
|
|
total_pages = max(1, (active_count + MULTISPEAKER_PAGE_SIZE - 1) // MULTISPEAKER_PAGE_SIZE)
|
|
|
|
|
|
page = max(0, min(int(page), total_pages - 1))
|
|
|
|
|
|
start = page * MULTISPEAKER_PAGE_SIZE
|
|
|
|
|
|
updates = []
|
|
|
|
|
|
for slot in range(MULTISPEAKER_PAGE_SIZE):
|
|
|
|
|
|
index = start + slot
|
|
|
|
|
|
visible = index < active_count
|
|
|
|
|
|
row = rows[index] if index < len(rows) else ["", "", "", ""]
|
|
|
|
|
|
updates.extend(
|
|
|
|
|
|
[
|
|
|
|
|
|
gr.Textbox.update(value=row[0], visible=visible),
|
|
|
|
|
|
gr.Textbox.update(value=row[1], visible=visible),
|
|
|
|
|
|
gr.Number.update(
|
|
|
|
|
|
value=row[2] if row[2] not in ("", None) else None,
|
|
|
|
|
|
visible=visible,
|
|
|
|
|
|
),
|
|
|
|
|
|
gr.Number.update(
|
|
|
|
|
|
value=row[3] if row[3] not in ("", None) else None,
|
|
|
|
|
|
visible=visible,
|
|
|
|
|
|
),
|
|
|
|
|
|
]
|
|
|
|
|
|
)
|
|
|
|
|
|
page_text = i18n("第%s/%s页,共%s行") % (page + 1, total_pages, active_count)
|
|
|
|
|
|
return tuple([rows, active_count, page, page_text] + updates)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def change_multispeaker_page(action, rows, active_count, page, *values):
|
|
|
|
|
|
rows = sync_multispeaker_page(rows, active_count, page, values)
|
|
|
|
|
|
active_count = int(active_count)
|
|
|
|
|
|
page = int(page)
|
|
|
|
|
|
if action == "add":
|
|
|
|
|
|
if active_count < MULTISPEAKER_MAX_ROWS:
|
|
|
|
|
|
used_ids = set()
|
|
|
|
|
|
for row in rows[:active_count]:
|
|
|
|
|
|
try:
|
|
|
|
|
|
speaker_id = int(float(row[2]))
|
|
|
|
|
|
except (TypeError, ValueError):
|
|
|
|
|
|
continue
|
|
|
|
|
|
if 0 <= speaker_id <= 109:
|
|
|
|
|
|
used_ids.add(speaker_id)
|
|
|
|
|
|
speaker_id = next(
|
|
|
|
|
|
value for value in range(110) if value not in used_ids
|
|
|
|
|
|
)
|
|
|
|
|
|
rows[active_count] = ["", "", speaker_id, 1]
|
|
|
|
|
|
active_count += 1
|
|
|
|
|
|
page = (active_count - 1) // MULTISPEAKER_PAGE_SIZE
|
|
|
|
|
|
elif action == "remove":
|
|
|
|
|
|
if active_count > 2:
|
|
|
|
|
|
active_count -= 1
|
|
|
|
|
|
rows[active_count] = ["", "", "", ""]
|
|
|
|
|
|
page = min(page, (active_count - 1) // MULTISPEAKER_PAGE_SIZE)
|
|
|
|
|
|
elif action == "previous":
|
|
|
|
|
|
page -= 1
|
|
|
|
|
|
elif action == "next":
|
|
|
|
|
|
page += 1
|
|
|
|
|
|
return multispeaker_page_updates(rows, active_count, page)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def add_multispeaker_row(rows, active_count, page, *values):
|
|
|
|
|
|
return change_multispeaker_page("add", rows, active_count, page, *values)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def remove_multispeaker_row(rows, active_count, page, *values):
|
|
|
|
|
|
return change_multispeaker_page("remove", rows, active_count, page, *values)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def previous_multispeaker_page(rows, active_count, page, *values):
|
|
|
|
|
|
return change_multispeaker_page("previous", rows, active_count, page, *values)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def next_multispeaker_page(rows, active_count, page, *values):
|
|
|
|
|
|
return change_multispeaker_page("next", rows, active_count, page, *values)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def render_multispeaker_submit_status(message, warning=False):
|
|
|
|
|
|
color = "#9a6700" if warning else "#116329"
|
|
|
|
|
|
background = "#fff8c5" if warning else "#dafbe1"
|
|
|
|
|
|
return (
|
|
|
|
|
|
'<div class="multispeaker-submit-status" style="border-color:%s;'
|
|
|
|
|
|
'background:%s;color:%s;">%s</div>'
|
|
|
|
|
|
) % (color, background, color, html.escape(message))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def submit_multispeaker_rows(exp_name, rows, active_count, page, *values):
|
|
|
|
|
|
rows = sync_multispeaker_page(rows, active_count, page, values)
|
|
|
|
|
|
exp_name = str(exp_name or "").strip()
|
|
|
|
|
|
if not exp_name:
|
|
|
|
|
|
raise gr.Error(i18n("实验名不能为空"))
|
|
|
|
|
|
try:
|
|
|
|
|
|
manifest, invalid_rows = build_manifest_from_rows(rows[: int(active_count)])
|
|
|
|
|
|
path = write_manifest(experiment_path(exp_name), manifest)
|
|
|
|
|
|
except ManifestError as error:
|
|
|
|
|
|
raise gr.Error(manifest_error_text(error))
|
|
|
|
|
|
message = i18n("多说话人训练集清单已保存:%s;有效音频%s个") % (
|
|
|
|
|
|
path,
|
|
|
|
|
|
len(manifest["entries"]),
|
|
|
|
|
|
)
|
|
|
|
|
|
if invalid_rows:
|
|
|
|
|
|
warning_text = i18n("以下行填写不完整或无效,已忽略:%s") % ", ".join(
|
|
|
|
|
|
str(index) for index in invalid_rows
|
|
|
|
|
|
)
|
|
|
|
|
|
if hasattr(gr, "Warning"):
|
|
|
|
|
|
gr.Warning(warning_text)
|
|
|
|
|
|
logger.warning(warning_text)
|
|
|
|
|
|
message = "%s\n%s" % (warning_text, message)
|
|
|
|
|
|
return rows, render_multispeaker_submit_status(message, True)
|
|
|
|
|
|
return rows, render_multispeaker_submit_status(message)
|
|
|
|
|
|
|
2026-07-19 21:17:17 +08:00
|
|
|
|
|
|
|
|
|
|
TRAIN_TASK_LOCK = threading.Lock()
|
|
|
|
|
|
TRAIN_TASK = None
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def button_update(value=None, variant=None, visible=None):
|
|
|
|
|
|
update = {"__type__": "update"}
|
|
|
|
|
|
if value is not None:
|
|
|
|
|
|
update["value"] = value
|
|
|
|
|
|
if variant is not None:
|
|
|
|
|
|
update["variant"] = variant
|
|
|
|
|
|
if visible is not None:
|
|
|
|
|
|
update["visible"] = visible
|
|
|
|
|
|
return update
|
|
|
|
|
|
|
|
|
|
|
|
|
2026-07-23 22:00:19 +08:00
|
|
|
|
def render_pymss_progress(percent=0, label="等待开始", state="idle"):
|
|
|
|
|
|
percent = max(0.0, min(100.0, float(percent or 0)))
|
|
|
|
|
|
colors = {
|
|
|
|
|
|
"idle": "#64748b",
|
|
|
|
|
|
"running": "#2563eb",
|
|
|
|
|
|
"done": "#15803d",
|
|
|
|
|
|
"stopped": "#b45309",
|
|
|
|
|
|
"failed": "#b91c1c",
|
|
|
|
|
|
}
|
|
|
|
|
|
color = colors.get(state, colors["running"])
|
|
|
|
|
|
safe_label = html.escape(str(label or ""))
|
|
|
|
|
|
return (
|
|
|
|
|
|
'<div style="min-height:52px;padding:6px 0;">'
|
|
|
|
|
|
'<div style="display:flex;justify-content:space-between;gap:12px;'
|
|
|
|
|
|
'align-items:center;margin-bottom:7px;font-size:14px;line-height:20px;">'
|
|
|
|
|
|
'<span style="overflow-wrap:anywhere;">%s</span>'
|
|
|
|
|
|
'<strong style="flex:0 0 auto;color:%s;">%.1f%%</strong>'
|
|
|
|
|
|
"</div>"
|
|
|
|
|
|
'<div role="progressbar" aria-valuemin="0" aria-valuemax="100" '
|
|
|
|
|
|
'aria-valuenow="%.1f" style="height:10px;width:100%%;overflow:hidden;'
|
|
|
|
|
|
'border-radius:4px;background:#e2e8f0;">'
|
|
|
|
|
|
'<div style="height:100%%;width:%.3f%%;background:%s;"></div>'
|
|
|
|
|
|
"</div></div>"
|
|
|
|
|
|
) % (safe_label, color, percent, percent, percent, color)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def run_pymss_separation(
|
|
|
|
|
|
model_name,
|
|
|
|
|
|
inp_root,
|
|
|
|
|
|
save_root_vocal,
|
|
|
|
|
|
paths,
|
|
|
|
|
|
save_root_ins,
|
|
|
|
|
|
format0,
|
|
|
|
|
|
):
|
|
|
|
|
|
progress_state = {
|
|
|
|
|
|
"percent": 0.0,
|
|
|
|
|
|
"label": "正在准备 PyMSS 分离任务",
|
|
|
|
|
|
"state": "running",
|
|
|
|
|
|
}
|
|
|
|
|
|
busy = False
|
|
|
|
|
|
|
|
|
|
|
|
def update_progress(event):
|
|
|
|
|
|
nonlocal busy
|
|
|
|
|
|
event_type = event.get("event")
|
|
|
|
|
|
file_count = max(1, int(event.get("file_count") or 1))
|
|
|
|
|
|
file_index = max(1, int(event.get("file_index") or 1))
|
|
|
|
|
|
message = str(event.get("message") or "")
|
|
|
|
|
|
|
|
|
|
|
|
if event_type == "progress":
|
|
|
|
|
|
done = max(0.0, float(event.get("done") or 0))
|
|
|
|
|
|
total = max(1.0, float(event.get("total") or 1))
|
|
|
|
|
|
file_fraction = min(1.0, done / total)
|
|
|
|
|
|
progress_state["percent"] = (
|
|
|
|
|
|
(file_index - 1 + file_fraction) / file_count * 100
|
|
|
|
|
|
)
|
|
|
|
|
|
progress_state["label"] = "文件 %s/%s · %s · %.0f/%.0f 秒" % (
|
|
|
|
|
|
file_index,
|
|
|
|
|
|
file_count,
|
|
|
|
|
|
message or "正在处理音频",
|
|
|
|
|
|
done,
|
|
|
|
|
|
total,
|
|
|
|
|
|
)
|
|
|
|
|
|
progress_state["state"] = "running"
|
|
|
|
|
|
elif event_type == "file_start":
|
|
|
|
|
|
progress_state["percent"] = (file_index - 1) / file_count * 100
|
|
|
|
|
|
progress_state["label"] = message
|
|
|
|
|
|
progress_state["state"] = "running"
|
|
|
|
|
|
elif event_type == "file":
|
|
|
|
|
|
progress_state["percent"] = file_index / file_count * 100
|
|
|
|
|
|
progress_state["label"] = (
|
|
|
|
|
|
message.splitlines()[0] if message else "文件处理结束"
|
|
|
|
|
|
)
|
|
|
|
|
|
progress_state["state"] = "running" if event.get("ok") else "failed"
|
|
|
|
|
|
elif event_type == "done":
|
|
|
|
|
|
successful = int(event.get("successful") or 0)
|
|
|
|
|
|
failed = int(event.get("failed") or 0)
|
|
|
|
|
|
progress_state["percent"] = 100.0
|
|
|
|
|
|
progress_state["label"] = "分离完成:成功 %s,失败 %s" % (
|
|
|
|
|
|
successful,
|
|
|
|
|
|
failed,
|
|
|
|
|
|
)
|
|
|
|
|
|
progress_state["state"] = "done" if failed == 0 else "failed"
|
|
|
|
|
|
elif event_type == "retry_fp32":
|
|
|
|
|
|
progress_state["percent"] = 0.0
|
|
|
|
|
|
progress_state["label"] = message
|
|
|
|
|
|
progress_state["state"] = "running"
|
|
|
|
|
|
elif event_type == "cancelled":
|
|
|
|
|
|
progress_state["label"] = message or "PyMSS 分离任务已停止"
|
|
|
|
|
|
progress_state["state"] = "stopped"
|
|
|
|
|
|
elif event_type in {"fatal", "busy"}:
|
|
|
|
|
|
progress_state["label"] = (
|
|
|
|
|
|
message.splitlines()[0] if message else "PyMSS 分离任务失败"
|
|
|
|
|
|
)
|
|
|
|
|
|
progress_state["state"] = "failed"
|
|
|
|
|
|
busy = event_type == "busy"
|
|
|
|
|
|
elif event_type in {"preparing", "precision_attempt", "status"}:
|
|
|
|
|
|
progress_state["label"] = message
|
|
|
|
|
|
progress_state["state"] = "running"
|
|
|
|
|
|
|
|
|
|
|
|
last_info = ""
|
|
|
|
|
|
try:
|
|
|
|
|
|
for info in _pymss_separate_core(
|
|
|
|
|
|
model_name,
|
|
|
|
|
|
inp_root,
|
|
|
|
|
|
save_root_vocal,
|
|
|
|
|
|
paths,
|
|
|
|
|
|
save_root_ins,
|
|
|
|
|
|
format0,
|
|
|
|
|
|
event_callback=update_progress,
|
|
|
|
|
|
):
|
|
|
|
|
|
last_info = info
|
|
|
|
|
|
start_button = button_update()
|
|
|
|
|
|
stop_button = button_update()
|
|
|
|
|
|
if not busy:
|
|
|
|
|
|
start_button = button_update(visible=False)
|
|
|
|
|
|
stop_button = button_update(visible=True)
|
|
|
|
|
|
yield (
|
|
|
|
|
|
info,
|
|
|
|
|
|
render_pymss_progress(**progress_state),
|
|
|
|
|
|
start_button,
|
|
|
|
|
|
stop_button,
|
|
|
|
|
|
)
|
|
|
|
|
|
except Exception:
|
|
|
|
|
|
last_info = "失败\n%s" % traceback.format_exc()
|
|
|
|
|
|
progress_state.update(
|
|
|
|
|
|
{"label": "PyMSS 分离任务失败", "state": "failed"}
|
|
|
|
|
|
)
|
|
|
|
|
|
logger.exception("PyMSS WebUI task failed")
|
|
|
|
|
|
|
|
|
|
|
|
start_button = button_update()
|
|
|
|
|
|
stop_button = button_update()
|
|
|
|
|
|
if not busy:
|
|
|
|
|
|
start_button = button_update(visible=True)
|
|
|
|
|
|
stop_button = button_update(visible=False)
|
|
|
|
|
|
yield (last_info, render_pymss_progress(**progress_state), start_button, stop_button)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def stop_pymss_webui():
|
|
|
|
|
|
return (
|
|
|
|
|
|
_stop_pymss_separation_core(),
|
|
|
|
|
|
render_pymss_progress(0, "PyMSS 分离任务已停止", "stopped"),
|
|
|
|
|
|
button_update(visible=True),
|
|
|
|
|
|
button_update(visible=False),
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
2026-07-19 21:17:17 +08:00
|
|
|
|
def format_status(title, state, detail=""):
|
|
|
|
|
|
lines = ["【%s】" % i18n(title), "%s:%s" % (i18n("状态"), i18n(state))]
|
|
|
|
|
|
if detail:
|
|
|
|
|
|
lines.extend(["", detail.strip()])
|
|
|
|
|
|
return "\n".join(lines)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def format_workflow_status(step, detail="", completed_steps=None, state="运行中"):
|
|
|
|
|
|
completed_steps = completed_steps or []
|
|
|
|
|
|
detail = str(detail).strip()
|
|
|
|
|
|
lines = []
|
|
|
|
|
|
if completed_steps:
|
|
|
|
|
|
lines.append("%s:" % i18n("已完成阶段"))
|
|
|
|
|
|
lines.extend(
|
|
|
|
|
|
"✓ %s:%s" % (i18n(completed_step), i18n("已成功"))
|
|
|
|
|
|
for completed_step in completed_steps
|
|
|
|
|
|
)
|
|
|
|
|
|
if step:
|
|
|
|
|
|
if lines:
|
|
|
|
|
|
lines.append("")
|
|
|
|
|
|
lines.append("%s:%s" % (i18n("当前阶段"), i18n(step)))
|
|
|
|
|
|
if detail:
|
|
|
|
|
|
lines.extend(["", detail])
|
|
|
|
|
|
return format_status(
|
|
|
|
|
|
"一键训练",
|
|
|
|
|
|
state,
|
|
|
|
|
|
"\n".join(lines),
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def read_log(path, max_lines=40):
|
|
|
|
|
|
try:
|
|
|
|
|
|
lines = [line.rstrip() for line in read_text(path, errors="ignore").splitlines()]
|
|
|
|
|
|
lines = [line for line in lines if line.strip()]
|
|
|
|
|
|
if len(lines) > max_lines:
|
|
|
|
|
|
tail_count = max(0, max_lines - 1)
|
|
|
|
|
|
omitted = len(lines) - tail_count
|
|
|
|
|
|
tail = lines[-tail_count:] if tail_count else []
|
|
|
|
|
|
lines = [i18n("……已省略前%s行,仅显示最新状态") % omitted]
|
|
|
|
|
|
lines.extend(tail)
|
|
|
|
|
|
return "\n".join(lines)
|
|
|
|
|
|
except FileNotFoundError:
|
|
|
|
|
|
return ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def artifact_names(directory, suffix):
|
|
|
|
|
|
if not os.path.isdir(directory):
|
|
|
|
|
|
return set()
|
|
|
|
|
|
return {
|
|
|
|
|
|
name.split(".")[0]
|
|
|
|
|
|
for name in os.listdir(directory)
|
|
|
|
|
|
if name.lower().endswith(suffix)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def validate_preprocess_outputs(exp_dir):
|
|
|
|
|
|
exp_path = os.path.join(now_dir, "logs", exp_dir)
|
|
|
|
|
|
gt_names = artifact_names(os.path.join(exp_path, "0_gt_wavs"), ".wav")
|
|
|
|
|
|
wav16_names = artifact_names(os.path.join(exp_path, "1_16k_wavs"), ".wav")
|
|
|
|
|
|
if not gt_names:
|
|
|
|
|
|
raise RuntimeError(i18n("数据切分没有生成有效训练音频,请检查训练集和数据切分日志"))
|
|
|
|
|
|
if not wav16_names:
|
|
|
|
|
|
raise RuntimeError(i18n("数据切分没有生成16k音频,已停止后续特征提取和训练"))
|
|
|
|
|
|
if not gt_names & wav16_names:
|
|
|
|
|
|
raise RuntimeError(i18n("数据切分输出文件不匹配,已停止后续特征提取和训练"))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def validate_feature_outputs(exp_dir, version, if_f0):
|
|
|
|
|
|
exp_path = os.path.join(now_dir, "logs", exp_dir)
|
|
|
|
|
|
wav16_names = artifact_names(os.path.join(exp_path, "1_16k_wavs"), ".wav")
|
|
|
|
|
|
feature_name = "3_feature256" if version == "v1" else "3_feature768"
|
|
|
|
|
|
feature_names = artifact_names(os.path.join(exp_path, feature_name), ".npy")
|
|
|
|
|
|
matched = wav16_names & feature_names
|
|
|
|
|
|
if not feature_names or not matched:
|
|
|
|
|
|
raise RuntimeError(i18n("HuBERT特征提取没有生成有效结果,已停止训练"))
|
|
|
|
|
|
if if_f0:
|
|
|
|
|
|
f0_names = artifact_names(os.path.join(exp_path, "2a_f0"), ".npy")
|
|
|
|
|
|
f0nsf_names = artifact_names(os.path.join(exp_path, "2b-f0nsf"), ".npy")
|
|
|
|
|
|
matched &= f0_names & f0nsf_names
|
|
|
|
|
|
if not f0_names or not f0nsf_names or not matched:
|
|
|
|
|
|
raise RuntimeError(i18n("F0提取没有生成有效结果,已停止训练"))
|
|
|
|
|
|
return matched
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def begin_train_task(name):
|
|
|
|
|
|
global TRAIN_TASK
|
|
|
|
|
|
with TRAIN_TASK_LOCK:
|
|
|
|
|
|
if TRAIN_TASK is None:
|
|
|
|
|
|
state = {
|
|
|
|
|
|
"name": name,
|
|
|
|
|
|
"processes": [],
|
|
|
|
|
|
"stop_requested": False,
|
|
|
|
|
|
}
|
|
|
|
|
|
TRAIN_TASK = state
|
|
|
|
|
|
return "start", state
|
|
|
|
|
|
return "busy", TRAIN_TASK
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def stop_train_task(name):
|
|
|
|
|
|
with TRAIN_TASK_LOCK:
|
|
|
|
|
|
if TRAIN_TASK is None:
|
|
|
|
|
|
return (
|
|
|
|
|
|
format_status(name, "未运行"),
|
|
|
|
|
|
button_update(visible=True),
|
|
|
|
|
|
button_update(visible=False),
|
|
|
|
|
|
)
|
|
|
|
|
|
if TRAIN_TASK["name"] != name:
|
|
|
|
|
|
return (
|
|
|
|
|
|
format_status(
|
|
|
|
|
|
name,
|
|
|
|
|
|
"无法停止",
|
|
|
|
|
|
i18n("%s运行中,请先停止该任务") % i18n(TRAIN_TASK["name"]),
|
|
|
|
|
|
),
|
|
|
|
|
|
button_update(),
|
|
|
|
|
|
button_update(),
|
|
|
|
|
|
)
|
|
|
|
|
|
state = TRAIN_TASK
|
|
|
|
|
|
state["stop_requested"] = True
|
|
|
|
|
|
processes = list(state["processes"])
|
|
|
|
|
|
for process in processes:
|
2026-07-23 22:00:19 +08:00
|
|
|
|
kill_process_tree(process, name, logger)
|
2026-07-19 21:17:17 +08:00
|
|
|
|
return (
|
|
|
|
|
|
format_status(name, "已停止"),
|
|
|
|
|
|
button_update(visible=True),
|
|
|
|
|
|
button_update(visible=False),
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def finish_train_task(state):
|
|
|
|
|
|
global TRAIN_TASK
|
|
|
|
|
|
with TRAIN_TASK_LOCK:
|
|
|
|
|
|
if TRAIN_TASK is state:
|
|
|
|
|
|
TRAIN_TASK = None
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def train_task_stopped(state):
|
|
|
|
|
|
with TRAIN_TASK_LOCK:
|
|
|
|
|
|
return state["stop_requested"]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def start_train_process(state, cmd):
|
|
|
|
|
|
kwargs = {"shell": True, "cwd": now_dir}
|
2026-07-20 22:34:58 +08:00
|
|
|
|
if "train/train.py" in cmd.replace("\\", "/"):
|
|
|
|
|
|
training_env = os.environ.copy()
|
|
|
|
|
|
training_env["RVC_CUDA_GRAPH"] = "0"
|
|
|
|
|
|
kwargs["env"] = training_env
|
2026-07-19 21:17:17 +08:00
|
|
|
|
if platform.system() == "Windows":
|
|
|
|
|
|
kwargs["creationflags"] = subprocess.CREATE_NEW_PROCESS_GROUP
|
|
|
|
|
|
else:
|
|
|
|
|
|
kwargs["start_new_session"] = True
|
|
|
|
|
|
logger.info("%s: %s", i18n("执行命令"), cmd)
|
|
|
|
|
|
process = Popen(cmd, **kwargs)
|
|
|
|
|
|
with TRAIN_TASK_LOCK:
|
|
|
|
|
|
state["processes"].append(process)
|
|
|
|
|
|
stopped = state["stop_requested"]
|
|
|
|
|
|
if stopped:
|
2026-07-23 22:00:19 +08:00
|
|
|
|
kill_process_tree(process, state["name"], logger)
|
2026-07-19 21:17:17 +08:00
|
|
|
|
return process
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def wait_train_processes(
|
|
|
|
|
|
state,
|
|
|
|
|
|
processes,
|
|
|
|
|
|
log_path=None,
|
|
|
|
|
|
title="任务",
|
|
|
|
|
|
format_output=True,
|
|
|
|
|
|
watch_weights=False,
|
|
|
|
|
|
):
|
|
|
|
|
|
last_snapshot = None
|
|
|
|
|
|
last_emit_time = 0
|
|
|
|
|
|
last_weight_names = tuple(weight_names()) if watch_weights else ()
|
|
|
|
|
|
while any(process.poll() is None for process in processes):
|
|
|
|
|
|
if train_task_stopped(state):
|
|
|
|
|
|
for process in processes:
|
2026-07-23 22:00:19 +08:00
|
|
|
|
kill_process_tree(process, state["name"], logger)
|
2026-07-19 21:17:17 +08:00
|
|
|
|
break
|
|
|
|
|
|
if log_path:
|
|
|
|
|
|
snapshot = read_log(log_path)
|
|
|
|
|
|
current_time = time.monotonic()
|
|
|
|
|
|
current_weight_names = tuple(weight_names()) if watch_weights else ()
|
|
|
|
|
|
weights_changed = watch_weights and current_weight_names != last_weight_names
|
|
|
|
|
|
if (
|
|
|
|
|
|
snapshot != last_snapshot
|
|
|
|
|
|
or weights_changed
|
|
|
|
|
|
or current_time - last_emit_time >= 5
|
|
|
|
|
|
):
|
|
|
|
|
|
yield (
|
|
|
|
|
|
format_status(title, "运行中", snapshot)
|
|
|
|
|
|
if format_output
|
|
|
|
|
|
else snapshot
|
|
|
|
|
|
)
|
|
|
|
|
|
last_snapshot = snapshot
|
|
|
|
|
|
last_emit_time = current_time
|
|
|
|
|
|
last_weight_names = current_weight_names
|
|
|
|
|
|
sleep(1)
|
|
|
|
|
|
with TRAIN_TASK_LOCK:
|
|
|
|
|
|
for process in processes:
|
|
|
|
|
|
if process in state["processes"]:
|
|
|
|
|
|
state["processes"].remove(process)
|
|
|
|
|
|
if log_path:
|
|
|
|
|
|
final_state = "已停止" if train_task_stopped(state) else "正在收尾"
|
|
|
|
|
|
snapshot = read_log(log_path)
|
|
|
|
|
|
yield (
|
|
|
|
|
|
format_status(title, final_state, snapshot)
|
|
|
|
|
|
if format_output
|
|
|
|
|
|
else snapshot
|
|
|
|
|
|
)
|
|
|
|
|
|
if not train_task_stopped(state):
|
|
|
|
|
|
failed = [process.returncode for process in processes if process.returncode != 0]
|
|
|
|
|
|
if failed:
|
|
|
|
|
|
raise RuntimeError(i18n("子进程执行失败,返回码:%s") % failed)
|
|
|
|
|
|
|
|
|
|
|
|
|
2026-08-04 15:47:05 +08:00
|
|
|
|
def run_preprocess_dataset(
|
|
|
|
|
|
trainset_dir, exp_dir, sr, n_p, state, format_output=True, training_mode=None
|
|
|
|
|
|
):
|
2026-07-19 21:17:17 +08:00
|
|
|
|
sr = sr_dict[sr]
|
|
|
|
|
|
os.makedirs("%s/logs/%s" % (now_dir, exp_dir), exist_ok=True)
|
2026-08-04 15:47:05 +08:00
|
|
|
|
if is_multispeaker_mode(training_mode):
|
|
|
|
|
|
prepare_multispeaker_manifest(trainset_dir, exp_dir)
|
2026-07-19 21:17:17 +08:00
|
|
|
|
log_path = "%s/logs/%s/preprocess.log" % (now_dir, exp_dir)
|
|
|
|
|
|
with open(log_path, "w", encoding="utf8"):
|
|
|
|
|
|
pass
|
2026-08-04 15:47:05 +08:00
|
|
|
|
manifest_arg = (
|
|
|
|
|
|
' "%s/logs/%s/multispeaker_manifest.json"' % (now_dir, exp_dir)
|
|
|
|
|
|
if is_multispeaker_mode(training_mode)
|
|
|
|
|
|
else ""
|
|
|
|
|
|
)
|
|
|
|
|
|
cmd = '"%s" train/preprocess.py "%s" %s %s "%s/logs/%s" %s %.1f%s' % (
|
2026-07-19 21:17:17 +08:00
|
|
|
|
config.python_cmd,
|
|
|
|
|
|
trainset_dir,
|
|
|
|
|
|
sr,
|
|
|
|
|
|
n_p,
|
|
|
|
|
|
now_dir,
|
|
|
|
|
|
exp_dir,
|
|
|
|
|
|
config.noparallel,
|
|
|
|
|
|
config.preprocess_per,
|
2026-08-04 15:47:05 +08:00
|
|
|
|
manifest_arg,
|
2026-07-19 21:17:17 +08:00
|
|
|
|
)
|
2026-07-21 21:23:25 +08:00
|
|
|
|
extract_start_time = time.time()
|
|
|
|
|
|
requested_workers = max(int(n_p), 1)
|
|
|
|
|
|
actual_workers = 1 if config.noparallel else requested_workers
|
|
|
|
|
|
print(
|
|
|
|
|
|
i18n(
|
|
|
|
|
|
"数据提取开始:start_time=%.6f,请求并行数=%s,实际并行数上限=%s"
|
|
|
|
|
|
)
|
|
|
|
|
|
% (extract_start_time, requested_workers, actual_workers),
|
|
|
|
|
|
flush=True,
|
2026-07-19 21:17:17 +08:00
|
|
|
|
)
|
2026-07-21 21:23:25 +08:00
|
|
|
|
try:
|
|
|
|
|
|
process = start_train_process(state, cmd)
|
|
|
|
|
|
yield from wait_train_processes(
|
|
|
|
|
|
state, [process], log_path, "数据切分", format_output
|
|
|
|
|
|
)
|
|
|
|
|
|
finally:
|
|
|
|
|
|
extract_end_time = time.time()
|
|
|
|
|
|
print(
|
|
|
|
|
|
i18n("数据提取结束:end_time=%.6f,总耗时=%.3f秒")
|
|
|
|
|
|
% (extract_end_time, extract_end_time - extract_start_time),
|
|
|
|
|
|
flush=True,
|
|
|
|
|
|
)
|
2026-07-19 21:17:17 +08:00
|
|
|
|
if not train_task_stopped(state):
|
|
|
|
|
|
validate_preprocess_outputs(exp_dir)
|
|
|
|
|
|
|
|
|
|
|
|
|
2026-08-04 15:47:05 +08:00
|
|
|
|
def preprocess_dataset(trainset_dir, exp_dir, sr, n_p, training_mode=None):
|
2026-07-19 21:17:17 +08:00
|
|
|
|
action, state = begin_train_task("数据切分")
|
|
|
|
|
|
if action == "busy":
|
|
|
|
|
|
yield (
|
|
|
|
|
|
format_status(
|
|
|
|
|
|
"数据切分",
|
|
|
|
|
|
"等待中",
|
|
|
|
|
|
i18n("%s运行中,请先停止该任务") % i18n(state["name"]),
|
|
|
|
|
|
),
|
|
|
|
|
|
button_update(),
|
|
|
|
|
|
button_update(),
|
|
|
|
|
|
)
|
|
|
|
|
|
return
|
|
|
|
|
|
final_info = None
|
|
|
|
|
|
try:
|
|
|
|
|
|
yield (
|
|
|
|
|
|
format_status("数据切分", "正在启动"),
|
|
|
|
|
|
button_update(visible=False),
|
|
|
|
|
|
button_update(visible=True),
|
|
|
|
|
|
)
|
2026-08-04 15:47:05 +08:00
|
|
|
|
for info in run_preprocess_dataset(
|
|
|
|
|
|
trainset_dir, exp_dir, sr, n_p, state, training_mode=training_mode
|
|
|
|
|
|
):
|
2026-07-19 21:17:17 +08:00
|
|
|
|
yield info, button_update(visible=False), button_update(visible=True)
|
|
|
|
|
|
if train_task_stopped(state):
|
|
|
|
|
|
final_info = format_status("数据切分", "已停止")
|
|
|
|
|
|
except Exception:
|
|
|
|
|
|
final_info = format_status("数据切分", "失败", traceback.format_exc())
|
|
|
|
|
|
finally:
|
|
|
|
|
|
finish_train_task(state)
|
|
|
|
|
|
if final_info is None:
|
|
|
|
|
|
final_info = format_status("数据切分", "已完成")
|
|
|
|
|
|
yield final_info, button_update(visible=True), button_update(visible=False)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def stop_preprocess_dataset():
|
|
|
|
|
|
return stop_train_task("数据切分")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# but2.click(extract_f0,[gpus6,np7,f0method8,if_f0_3,trainset_dir4],[info2])
|
|
|
|
|
|
def run_extract_f0_feature(
|
|
|
|
|
|
gpus,
|
|
|
|
|
|
n_p,
|
|
|
|
|
|
f0method,
|
|
|
|
|
|
if_f0,
|
|
|
|
|
|
exp_dir,
|
|
|
|
|
|
version19,
|
|
|
|
|
|
gpus_rmvpe,
|
|
|
|
|
|
state,
|
|
|
|
|
|
format_output=True,
|
|
|
|
|
|
):
|
|
|
|
|
|
if f0method not in ("pm", "rmvpe"):
|
|
|
|
|
|
raise ValueError(i18n("仅支持pm和rmvpe音高提取算法"))
|
|
|
|
|
|
log_path = "%s/logs/%s/extract_f0_feature.log" % (now_dir, exp_dir)
|
|
|
|
|
|
os.makedirs("%s/logs/%s" % (now_dir, exp_dir), exist_ok=True)
|
|
|
|
|
|
validate_preprocess_outputs(exp_dir)
|
|
|
|
|
|
with open(log_path, "w", encoding="utf8"):
|
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
if if_f0:
|
|
|
|
|
|
processes = []
|
|
|
|
|
|
rmvpe_devices = [gpu for gpu in gpus_rmvpe.split("-") if gpu != ""]
|
|
|
|
|
|
if f0method == "pm" or (
|
|
|
|
|
|
f0method == "rmvpe" and not rmvpe_devices and not config.dml
|
|
|
|
|
|
):
|
|
|
|
|
|
cmd = (
|
|
|
|
|
|
'"%s" train/dataset/extract_f0.py cpu "%s/logs/%s" %s %s'
|
|
|
|
|
|
% (config.python_cmd, now_dir, exp_dir, n_p, f0method)
|
|
|
|
|
|
)
|
|
|
|
|
|
processes.append(start_train_process(state, cmd))
|
|
|
|
|
|
elif rmvpe_devices:
|
|
|
|
|
|
count = len(rmvpe_devices)
|
|
|
|
|
|
for index, gpu in enumerate(rmvpe_devices):
|
|
|
|
|
|
cmd = (
|
|
|
|
|
|
'"%s" train/dataset/extract_f0.py cuda %s %s %s "%s/logs/%s" %s'
|
|
|
|
|
|
% (
|
|
|
|
|
|
config.python_cmd,
|
|
|
|
|
|
count,
|
|
|
|
|
|
index,
|
|
|
|
|
|
gpu,
|
|
|
|
|
|
now_dir,
|
|
|
|
|
|
exp_dir,
|
|
|
|
|
|
config.is_half,
|
|
|
|
|
|
)
|
|
|
|
|
|
)
|
|
|
|
|
|
processes.append(start_train_process(state, cmd))
|
|
|
|
|
|
else:
|
|
|
|
|
|
cmd = (
|
|
|
|
|
|
'"%s" train/dataset/extract_f0.py dml "%s/logs/%s"'
|
|
|
|
|
|
% (config.python_cmd, now_dir, exp_dir)
|
|
|
|
|
|
)
|
|
|
|
|
|
processes.append(start_train_process(state, cmd))
|
|
|
|
|
|
yield from wait_train_processes(
|
|
|
|
|
|
state, processes, log_path, "F0提取", format_output
|
|
|
|
|
|
)
|
|
|
|
|
|
if train_task_stopped(state):
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
|
with open(log_path, "w", encoding="utf8"):
|
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
feature_gpus = [gpu for gpu in gpus.split("-") if gpu != ""]
|
|
|
|
|
|
processes = []
|
|
|
|
|
|
if feature_gpus:
|
|
|
|
|
|
count = len(feature_gpus)
|
|
|
|
|
|
for index, gpu in enumerate(feature_gpus):
|
|
|
|
|
|
cmd = (
|
|
|
|
|
|
'"%s" train/dataset/extract_hubert_feature.py %s %s %s %s "%s/logs/%s" %s %s'
|
|
|
|
|
|
% (
|
|
|
|
|
|
config.python_cmd,
|
|
|
|
|
|
config.device,
|
|
|
|
|
|
count,
|
|
|
|
|
|
index,
|
|
|
|
|
|
gpu,
|
|
|
|
|
|
now_dir,
|
|
|
|
|
|
exp_dir,
|
|
|
|
|
|
version19,
|
|
|
|
|
|
config.is_half,
|
|
|
|
|
|
)
|
|
|
|
|
|
)
|
|
|
|
|
|
processes.append(start_train_process(state, cmd))
|
|
|
|
|
|
else:
|
|
|
|
|
|
cmd = (
|
|
|
|
|
|
'"%s" train/dataset/extract_hubert_feature.py %s 1 0 "%s/logs/%s" %s %s'
|
|
|
|
|
|
% (
|
|
|
|
|
|
config.python_cmd,
|
|
|
|
|
|
config.device,
|
|
|
|
|
|
now_dir,
|
|
|
|
|
|
exp_dir,
|
|
|
|
|
|
version19,
|
|
|
|
|
|
config.is_half,
|
|
|
|
|
|
)
|
|
|
|
|
|
)
|
|
|
|
|
|
processes.append(start_train_process(state, cmd))
|
|
|
|
|
|
yield from wait_train_processes(
|
|
|
|
|
|
state, processes, log_path, "HuBERT特征", format_output
|
|
|
|
|
|
)
|
|
|
|
|
|
if not train_task_stopped(state):
|
|
|
|
|
|
validate_feature_outputs(exp_dir, version19, if_f0)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def extract_f0_feature(gpus, n_p, f0method, if_f0, exp_dir, version19, gpus_rmvpe):
|
|
|
|
|
|
action, state = begin_train_task("特征提取")
|
|
|
|
|
|
if action == "busy":
|
|
|
|
|
|
yield (
|
|
|
|
|
|
format_status(
|
|
|
|
|
|
"特征提取",
|
|
|
|
|
|
"等待中",
|
|
|
|
|
|
i18n("%s运行中,请先停止该任务") % i18n(state["name"]),
|
|
|
|
|
|
),
|
|
|
|
|
|
button_update(),
|
|
|
|
|
|
button_update(),
|
|
|
|
|
|
)
|
|
|
|
|
|
return
|
|
|
|
|
|
final_info = None
|
|
|
|
|
|
try:
|
|
|
|
|
|
yield (
|
|
|
|
|
|
format_status("特征提取", "正在启动"),
|
|
|
|
|
|
button_update(visible=False),
|
|
|
|
|
|
button_update(visible=True),
|
|
|
|
|
|
)
|
|
|
|
|
|
for info in run_extract_f0_feature(
|
|
|
|
|
|
gpus, n_p, f0method, if_f0, exp_dir, version19, gpus_rmvpe, state
|
|
|
|
|
|
):
|
|
|
|
|
|
yield info, button_update(visible=False), button_update(visible=True)
|
|
|
|
|
|
if train_task_stopped(state):
|
|
|
|
|
|
final_info = format_status("特征提取", "已停止")
|
|
|
|
|
|
except Exception:
|
|
|
|
|
|
final_info = format_status("特征提取", "失败", traceback.format_exc())
|
|
|
|
|
|
finally:
|
|
|
|
|
|
finish_train_task(state)
|
|
|
|
|
|
if final_info is None:
|
|
|
|
|
|
final_info = format_status("特征提取", "已完成")
|
|
|
|
|
|
yield final_info, button_update(visible=True), button_update(visible=False)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def stop_extract_f0_feature():
|
|
|
|
|
|
return stop_train_task("特征提取")
|
|
|
|
|
|
|
|
|
|
|
|
def get_pretrained_models(path_str, f0_str, sr2):
|
|
|
|
|
|
if_pretrained_generator_exist = os.access(
|
|
|
|
|
|
"assets/pretrained%s/%sG%s.pth" % (path_str, f0_str, sr2), os.F_OK
|
|
|
|
|
|
)
|
|
|
|
|
|
if_pretrained_discriminator_exist = os.access(
|
|
|
|
|
|
"assets/pretrained%s/%sD%s.pth" % (path_str, f0_str, sr2), os.F_OK
|
|
|
|
|
|
)
|
|
|
|
|
|
if not if_pretrained_generator_exist:
|
|
|
|
|
|
logger.warning(
|
|
|
|
|
|
i18n("生成器预训练模型不存在,将不使用:assets/pretrained%s/%sG%s.pth"),
|
|
|
|
|
|
path_str,
|
|
|
|
|
|
f0_str,
|
|
|
|
|
|
sr2,
|
|
|
|
|
|
)
|
|
|
|
|
|
if not if_pretrained_discriminator_exist:
|
|
|
|
|
|
logger.warning(
|
|
|
|
|
|
i18n("判别器预训练模型不存在,将不使用:assets/pretrained%s/%sD%s.pth"),
|
|
|
|
|
|
path_str,
|
|
|
|
|
|
f0_str,
|
|
|
|
|
|
sr2,
|
|
|
|
|
|
)
|
|
|
|
|
|
return (
|
|
|
|
|
|
(
|
|
|
|
|
|
"assets/pretrained%s/%sG%s.pth" % (path_str, f0_str, sr2)
|
|
|
|
|
|
if if_pretrained_generator_exist
|
|
|
|
|
|
else ""
|
|
|
|
|
|
),
|
|
|
|
|
|
(
|
|
|
|
|
|
"assets/pretrained%s/%sD%s.pth" % (path_str, f0_str, sr2)
|
|
|
|
|
|
if if_pretrained_discriminator_exist
|
|
|
|
|
|
else ""
|
|
|
|
|
|
),
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def change_sr2(sr2, if_f0_3, version19):
|
|
|
|
|
|
path_str = "" if version19 == "v1" else "_v2"
|
|
|
|
|
|
f0_str = "f0" if if_f0_3 else ""
|
|
|
|
|
|
return get_pretrained_models(path_str, f0_str, sr2)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def change_version19(sr2, if_f0_3, version19):
|
|
|
|
|
|
path_str = "" if version19 == "v1" else "_v2"
|
|
|
|
|
|
if sr2 == "32k" and version19 == "v1":
|
|
|
|
|
|
sr2 = "40k"
|
|
|
|
|
|
to_return_sr2 = (
|
|
|
|
|
|
{"choices": ["40k", "48k"], "__type__": "update", "value": sr2}
|
|
|
|
|
|
if version19 == "v1"
|
|
|
|
|
|
else {"choices": ["40k", "48k", "32k"], "__type__": "update", "value": sr2}
|
|
|
|
|
|
)
|
|
|
|
|
|
f0_str = "f0" if if_f0_3 else ""
|
|
|
|
|
|
return (
|
|
|
|
|
|
*get_pretrained_models(path_str, f0_str, sr2),
|
|
|
|
|
|
to_return_sr2,
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def change_f0(if_f0_3, sr2, version19): # f0method8,pretrained_G14,pretrained_D15
|
|
|
|
|
|
path_str = "" if version19 == "v1" else "_v2"
|
|
|
|
|
|
return (
|
|
|
|
|
|
{"visible": if_f0_3, "__type__": "update"},
|
2026-08-04 15:47:05 +08:00
|
|
|
|
{"visible": bool(if_f0_3) and F0GPUVisible, "__type__": "update"},
|
2026-07-19 21:17:17 +08:00
|
|
|
|
*get_pretrained_models(path_str, "f0" if if_f0_3 == True else "", sr2),
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# but3.click(click_train,[exp_dir1,sr2,if_f0_3,save_epoch10,total_epoch11,batch_size12,if_save_latest13,pretrained_G14,pretrained_D15,gpus16])
|
|
|
|
|
|
def run_train_model(
|
|
|
|
|
|
exp_dir1,
|
|
|
|
|
|
sr2,
|
|
|
|
|
|
if_f0_3,
|
|
|
|
|
|
spk_id5,
|
|
|
|
|
|
save_epoch10,
|
|
|
|
|
|
total_epoch11,
|
|
|
|
|
|
batch_size12,
|
|
|
|
|
|
if_save_latest13,
|
|
|
|
|
|
pretrained_G14,
|
|
|
|
|
|
pretrained_D15,
|
|
|
|
|
|
gpus16,
|
|
|
|
|
|
if_cache_gpu17,
|
|
|
|
|
|
if_save_every_weights18,
|
|
|
|
|
|
version19,
|
|
|
|
|
|
state,
|
|
|
|
|
|
format_output=True,
|
2026-08-04 15:47:05 +08:00
|
|
|
|
training_mode=None,
|
2026-07-19 21:17:17 +08:00
|
|
|
|
):
|
|
|
|
|
|
# 生成filelist
|
|
|
|
|
|
exp_dir = "%s/logs/%s" % (now_dir, exp_dir1)
|
|
|
|
|
|
os.makedirs(exp_dir, exist_ok=True)
|
|
|
|
|
|
gt_wavs_dir = "%s/0_gt_wavs" % (exp_dir)
|
|
|
|
|
|
feature_dir = (
|
|
|
|
|
|
"%s/3_feature256" % (exp_dir)
|
|
|
|
|
|
if version19 == "v1"
|
|
|
|
|
|
else "%s/3_feature768" % (exp_dir)
|
|
|
|
|
|
)
|
|
|
|
|
|
if if_f0_3:
|
|
|
|
|
|
f0_dir = "%s/2a_f0" % (exp_dir)
|
|
|
|
|
|
f0nsf_dir = "%s/2b-f0nsf" % (exp_dir)
|
|
|
|
|
|
names = (
|
|
|
|
|
|
set([name.split(".")[0] for name in os.listdir(gt_wavs_dir)])
|
|
|
|
|
|
& set([name.split(".")[0] for name in os.listdir(feature_dir)])
|
|
|
|
|
|
& set([name.split(".")[0] for name in os.listdir(f0_dir)])
|
|
|
|
|
|
& set([name.split(".")[0] for name in os.listdir(f0nsf_dir)])
|
|
|
|
|
|
)
|
|
|
|
|
|
else:
|
|
|
|
|
|
names = set([name.split(".")[0] for name in os.listdir(gt_wavs_dir)]) & set(
|
|
|
|
|
|
[name.split(".")[0] for name in os.listdir(feature_dir)]
|
|
|
|
|
|
)
|
2026-08-04 15:47:05 +08:00
|
|
|
|
multi = is_multispeaker_mode(training_mode)
|
|
|
|
|
|
manifest = load_experiment_manifest(exp_dir) if multi else None
|
|
|
|
|
|
manifest_by_key = (
|
|
|
|
|
|
{entry["output_key"]: entry for entry in manifest["entries"]}
|
|
|
|
|
|
if manifest
|
|
|
|
|
|
else {}
|
|
|
|
|
|
)
|
|
|
|
|
|
if multi:
|
|
|
|
|
|
names = {
|
|
|
|
|
|
name for name in names
|
|
|
|
|
|
if name.rsplit("_", 1)[0] in manifest_by_key
|
|
|
|
|
|
}
|
2026-07-19 21:17:17 +08:00
|
|
|
|
if not names:
|
|
|
|
|
|
raise RuntimeError(i18n("没有可用于训练的有效音频,请先完成数据切分和特征提取"))
|
|
|
|
|
|
opt = []
|
2026-08-04 15:47:05 +08:00
|
|
|
|
active_speaker_names = {}
|
|
|
|
|
|
for name in sorted(names):
|
|
|
|
|
|
entry = manifest_by_key.get(name.rsplit("_", 1)[0]) if multi else None
|
|
|
|
|
|
speaker_id = entry["speaker_id"] if entry else int(spk_id5)
|
|
|
|
|
|
if multi:
|
|
|
|
|
|
speaker_name = entry["speaker_name"]
|
|
|
|
|
|
active_speaker_names[speaker_id] = speaker_name
|
|
|
|
|
|
repeat = entry["repeat"] if entry else 1
|
2026-07-19 21:17:17 +08:00
|
|
|
|
if if_f0_3:
|
2026-08-04 15:47:05 +08:00
|
|
|
|
line = (
|
2026-07-19 21:17:17 +08:00
|
|
|
|
"%s/%s.wav|%s/%s.npy|%s/%s.wav.npy|%s/%s.wav.npy|%s"
|
|
|
|
|
|
% (
|
|
|
|
|
|
gt_wavs_dir.replace("\\", "\\\\"),
|
|
|
|
|
|
name,
|
|
|
|
|
|
feature_dir.replace("\\", "\\\\"),
|
|
|
|
|
|
name,
|
|
|
|
|
|
f0_dir.replace("\\", "\\\\"),
|
|
|
|
|
|
name,
|
|
|
|
|
|
f0nsf_dir.replace("\\", "\\\\"),
|
|
|
|
|
|
name,
|
2026-08-04 15:47:05 +08:00
|
|
|
|
speaker_id,
|
2026-07-19 21:17:17 +08:00
|
|
|
|
)
|
|
|
|
|
|
)
|
|
|
|
|
|
else:
|
2026-08-04 15:47:05 +08:00
|
|
|
|
line = (
|
2026-07-19 21:17:17 +08:00
|
|
|
|
"%s/%s.wav|%s/%s.npy|%s"
|
|
|
|
|
|
% (
|
|
|
|
|
|
gt_wavs_dir.replace("\\", "\\\\"),
|
|
|
|
|
|
name,
|
|
|
|
|
|
feature_dir.replace("\\", "\\\\"),
|
|
|
|
|
|
name,
|
2026-08-04 15:47:05 +08:00
|
|
|
|
speaker_id,
|
2026-07-19 21:17:17 +08:00
|
|
|
|
)
|
|
|
|
|
|
)
|
2026-08-04 15:47:05 +08:00
|
|
|
|
if multi:
|
|
|
|
|
|
line = "%s|%s" % (line, speaker_name)
|
|
|
|
|
|
opt.extend([line] * repeat)
|
2026-07-19 21:17:17 +08:00
|
|
|
|
fea_dim = 256 if version19 == "v1" else 768
|
2026-08-04 15:47:05 +08:00
|
|
|
|
mute_speaker_ids = (
|
|
|
|
|
|
sorted(active_speaker_names)
|
|
|
|
|
|
if multi
|
|
|
|
|
|
else [int(spk_id5)]
|
|
|
|
|
|
)
|
2026-07-19 21:17:17 +08:00
|
|
|
|
if if_f0_3:
|
2026-08-04 15:47:05 +08:00
|
|
|
|
for speaker_id in mute_speaker_ids:
|
|
|
|
|
|
for _ in range(2):
|
|
|
|
|
|
line = (
|
|
|
|
|
|
"%s/logs/mute/0_gt_wavs/mute%s.wav|%s/logs/mute/3_feature%s/mute.npy|%s/logs/mute/2a_f0/mute.wav.npy|%s/logs/mute/2b-f0nsf/mute.wav.npy|%s|%s"
|
|
|
|
|
|
% (now_dir, sr2, now_dir, fea_dim, now_dir, now_dir, speaker_id, active_speaker_names[speaker_id])
|
|
|
|
|
|
if multi
|
|
|
|
|
|
else "%s/logs/mute/0_gt_wavs/mute%s.wav|%s/logs/mute/3_feature%s/mute.npy|%s/logs/mute/2a_f0/mute.wav.npy|%s/logs/mute/2b-f0nsf/mute.wav.npy|%s"
|
|
|
|
|
|
% (now_dir, sr2, now_dir, fea_dim, now_dir, now_dir, speaker_id)
|
|
|
|
|
|
)
|
|
|
|
|
|
opt.append(line)
|
2026-07-19 21:17:17 +08:00
|
|
|
|
else:
|
2026-08-04 15:47:05 +08:00
|
|
|
|
for speaker_id in mute_speaker_ids:
|
|
|
|
|
|
for _ in range(2):
|
|
|
|
|
|
line = (
|
|
|
|
|
|
"%s/logs/mute/0_gt_wavs/mute%s.wav|%s/logs/mute/3_feature%s/mute.npy|%s|%s"
|
|
|
|
|
|
% (now_dir, sr2, now_dir, fea_dim, speaker_id, active_speaker_names[speaker_id])
|
|
|
|
|
|
if multi
|
|
|
|
|
|
else "%s/logs/mute/0_gt_wavs/mute%s.wav|%s/logs/mute/3_feature%s/mute.npy|%s"
|
|
|
|
|
|
% (now_dir, sr2, now_dir, fea_dim, speaker_id)
|
|
|
|
|
|
)
|
|
|
|
|
|
opt.append(line)
|
2026-07-19 21:17:17 +08:00
|
|
|
|
shuffle(opt)
|
|
|
|
|
|
with open("%s/filelist.txt" % exp_dir, "w", encoding="utf8") as f:
|
|
|
|
|
|
f.write("\n".join(opt))
|
|
|
|
|
|
logger.debug(i18n("训练文件列表写入完成"))
|
|
|
|
|
|
# 生成config#无需生成config
|
|
|
|
|
|
# cmd = python_cmd + " train_nsf_sim_cache_sid_load_pretrain.py -e mi-test -sr 40k -f0 1 -bs 4 -g 0 -te 10 -se 5 -pg pretrained/f0G40k.pth -pd pretrained/f0D40k.pth -l 1 -c 0"
|
|
|
|
|
|
logger.info(i18n("使用显卡:%s"), str(gpus16))
|
|
|
|
|
|
if pretrained_G14 == "":
|
|
|
|
|
|
logger.info(i18n("未使用生成器预训练模型"))
|
|
|
|
|
|
if pretrained_D15 == "":
|
|
|
|
|
|
logger.info(i18n("未使用判别器预训练模型"))
|
|
|
|
|
|
if version19 == "v1" or sr2 == "40k":
|
|
|
|
|
|
config_path = "v1/%s.json" % sr2
|
|
|
|
|
|
else:
|
|
|
|
|
|
config_path = "v2/%s.json" % sr2
|
|
|
|
|
|
config_save_path = os.path.join(exp_dir, "config.json")
|
2026-08-04 15:47:05 +08:00
|
|
|
|
if pathlib.Path(config_save_path).exists():
|
|
|
|
|
|
config_data = json.loads(read_text(config_save_path))
|
|
|
|
|
|
else:
|
|
|
|
|
|
config_data = copy.deepcopy(config.json_config[config_path])
|
|
|
|
|
|
if multi:
|
|
|
|
|
|
config_data["model"]["spk_embed_dim"] = 110
|
|
|
|
|
|
config_data["speaker_info"] = [
|
|
|
|
|
|
{"id": speaker_id, "name": active_speaker_names[speaker_id]}
|
|
|
|
|
|
for speaker_id in sorted(active_speaker_names)
|
|
|
|
|
|
]
|
|
|
|
|
|
else:
|
|
|
|
|
|
config_data.pop("speaker_info", None)
|
|
|
|
|
|
with open(config_save_path, "w", encoding="utf8") as f:
|
|
|
|
|
|
json.dump(
|
|
|
|
|
|
config_data,
|
|
|
|
|
|
f,
|
|
|
|
|
|
ensure_ascii=False,
|
|
|
|
|
|
indent=4,
|
|
|
|
|
|
sort_keys=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
f.write("\n")
|
2026-07-19 21:17:17 +08:00
|
|
|
|
if gpus16:
|
|
|
|
|
|
cmd = (
|
|
|
|
|
|
'"%s" train/train.py -e "%s" -sr %s -f0 %s -bs %s -g %s -te %s -se %s %s %s -l %s -c %s -sw %s -v %s'
|
|
|
|
|
|
% (
|
|
|
|
|
|
config.python_cmd,
|
|
|
|
|
|
exp_dir1,
|
|
|
|
|
|
sr2,
|
|
|
|
|
|
1 if if_f0_3 else 0,
|
|
|
|
|
|
batch_size12,
|
|
|
|
|
|
gpus16,
|
|
|
|
|
|
total_epoch11,
|
|
|
|
|
|
save_epoch10,
|
|
|
|
|
|
"-pg %s" % pretrained_G14 if pretrained_G14 != "" else "",
|
|
|
|
|
|
"-pd %s" % pretrained_D15 if pretrained_D15 != "" else "",
|
|
|
|
|
|
1 if if_save_latest13 == i18n("是") else 0,
|
|
|
|
|
|
1 if if_cache_gpu17 == i18n("是") else 0,
|
|
|
|
|
|
1 if if_save_every_weights18 == i18n("是") else 0,
|
|
|
|
|
|
version19,
|
|
|
|
|
|
)
|
|
|
|
|
|
)
|
|
|
|
|
|
else:
|
|
|
|
|
|
cmd = (
|
|
|
|
|
|
'"%s" train/train.py -e "%s" -sr %s -f0 %s -bs %s -te %s -se %s %s %s -l %s -c %s -sw %s -v %s'
|
|
|
|
|
|
% (
|
|
|
|
|
|
config.python_cmd,
|
|
|
|
|
|
exp_dir1,
|
|
|
|
|
|
sr2,
|
|
|
|
|
|
1 if if_f0_3 else 0,
|
|
|
|
|
|
batch_size12,
|
|
|
|
|
|
total_epoch11,
|
|
|
|
|
|
save_epoch10,
|
|
|
|
|
|
"-pg %s" % pretrained_G14 if pretrained_G14 != "" else "",
|
|
|
|
|
|
"-pd %s" % pretrained_D15 if pretrained_D15 != "" else "",
|
|
|
|
|
|
1 if if_save_latest13 == i18n("是") else 0,
|
|
|
|
|
|
1 if if_cache_gpu17 == i18n("是") else 0,
|
|
|
|
|
|
1 if if_save_every_weights18 == i18n("是") else 0,
|
|
|
|
|
|
version19,
|
|
|
|
|
|
)
|
|
|
|
|
|
)
|
|
|
|
|
|
logger.info("%s: %s", i18n("执行命令"), cmd)
|
|
|
|
|
|
process = start_train_process(state, cmd)
|
|
|
|
|
|
yield from wait_train_processes(
|
|
|
|
|
|
state,
|
|
|
|
|
|
[process],
|
|
|
|
|
|
os.path.join(exp_dir, "train.log"),
|
|
|
|
|
|
"模型训练",
|
|
|
|
|
|
format_output,
|
|
|
|
|
|
True,
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def click_train(
|
|
|
|
|
|
exp_dir1,
|
|
|
|
|
|
sr2,
|
|
|
|
|
|
if_f0_3,
|
|
|
|
|
|
spk_id5,
|
|
|
|
|
|
save_epoch10,
|
|
|
|
|
|
total_epoch11,
|
|
|
|
|
|
batch_size12,
|
|
|
|
|
|
if_save_latest13,
|
|
|
|
|
|
pretrained_G14,
|
|
|
|
|
|
pretrained_D15,
|
|
|
|
|
|
gpus16,
|
|
|
|
|
|
if_cache_gpu17,
|
|
|
|
|
|
if_save_every_weights18,
|
|
|
|
|
|
version19,
|
2026-08-04 15:47:05 +08:00
|
|
|
|
training_mode=None,
|
2026-07-19 21:17:17 +08:00
|
|
|
|
):
|
|
|
|
|
|
known_models = tuple(weight_names())
|
|
|
|
|
|
action, state = begin_train_task("模型训练")
|
|
|
|
|
|
if action == "busy":
|
|
|
|
|
|
yield (
|
|
|
|
|
|
format_status(
|
|
|
|
|
|
"模型训练",
|
|
|
|
|
|
"等待中",
|
|
|
|
|
|
i18n("%s运行中,请先停止该任务") % i18n(state["name"]),
|
|
|
|
|
|
),
|
|
|
|
|
|
button_update(),
|
|
|
|
|
|
button_update(),
|
|
|
|
|
|
button_update(),
|
|
|
|
|
|
)
|
|
|
|
|
|
return
|
|
|
|
|
|
final_info = None
|
|
|
|
|
|
try:
|
|
|
|
|
|
yield (
|
|
|
|
|
|
format_status("模型训练", "正在启动"),
|
|
|
|
|
|
button_update(visible=False),
|
|
|
|
|
|
button_update(visible=True),
|
|
|
|
|
|
button_update(),
|
|
|
|
|
|
)
|
|
|
|
|
|
for info in run_train_model(
|
|
|
|
|
|
exp_dir1,
|
|
|
|
|
|
sr2,
|
|
|
|
|
|
if_f0_3,
|
|
|
|
|
|
spk_id5,
|
|
|
|
|
|
save_epoch10,
|
|
|
|
|
|
total_epoch11,
|
|
|
|
|
|
batch_size12,
|
|
|
|
|
|
if_save_latest13,
|
|
|
|
|
|
pretrained_G14,
|
|
|
|
|
|
pretrained_D15,
|
|
|
|
|
|
gpus16,
|
|
|
|
|
|
if_cache_gpu17,
|
|
|
|
|
|
if_save_every_weights18,
|
|
|
|
|
|
version19,
|
|
|
|
|
|
state,
|
2026-08-04 15:47:05 +08:00
|
|
|
|
training_mode=training_mode,
|
2026-07-19 21:17:17 +08:00
|
|
|
|
):
|
|
|
|
|
|
known_models, model_update = refresh_weight_choices(known_models)
|
|
|
|
|
|
yield (
|
|
|
|
|
|
info,
|
|
|
|
|
|
button_update(visible=False),
|
|
|
|
|
|
button_update(visible=True),
|
|
|
|
|
|
model_update,
|
|
|
|
|
|
)
|
|
|
|
|
|
if train_task_stopped(state):
|
|
|
|
|
|
final_info = format_status("模型训练", "已停止")
|
|
|
|
|
|
except Exception:
|
|
|
|
|
|
final_info = format_status("模型训练", "失败", traceback.format_exc())
|
|
|
|
|
|
finally:
|
|
|
|
|
|
finish_train_task(state)
|
|
|
|
|
|
if final_info is None:
|
|
|
|
|
|
final_info = format_status("模型训练", "已完成")
|
|
|
|
|
|
model_update = change_choices()
|
|
|
|
|
|
yield (
|
|
|
|
|
|
final_info,
|
|
|
|
|
|
button_update(visible=True),
|
|
|
|
|
|
button_update(visible=False),
|
|
|
|
|
|
model_update,
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def stop_train_model():
|
|
|
|
|
|
return stop_train_task("模型训练")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# but4.click(train_index, [exp_dir1], info3)
|
2026-08-04 15:47:05 +08:00
|
|
|
|
def run_train_index(
|
|
|
|
|
|
exp_dir1, version19, state, format_output=True, training_mode=None
|
|
|
|
|
|
):
|
2026-07-19 21:17:17 +08:00
|
|
|
|
exp_dir = os.path.join(now_dir, "logs", exp_dir1)
|
|
|
|
|
|
os.makedirs(exp_dir, exist_ok=True)
|
|
|
|
|
|
log_path = os.path.join(exp_dir, "train_index.log")
|
|
|
|
|
|
with open(log_path, "w", encoding="utf8"):
|
|
|
|
|
|
pass
|
2026-08-04 15:47:05 +08:00
|
|
|
|
index_mode = (
|
|
|
|
|
|
"multi"
|
|
|
|
|
|
if is_multispeaker_mode(training_mode)
|
|
|
|
|
|
else "single"
|
|
|
|
|
|
if training_mode
|
|
|
|
|
|
else "auto"
|
|
|
|
|
|
)
|
2026-07-19 21:17:17 +08:00
|
|
|
|
cmd = (
|
2026-08-04 15:47:05 +08:00
|
|
|
|
'"%s" train/train_index.py "%s" %s "%s" %s %s'
|
2026-07-19 21:17:17 +08:00
|
|
|
|
% (
|
|
|
|
|
|
config.python_cmd,
|
|
|
|
|
|
exp_dir1,
|
|
|
|
|
|
version19,
|
|
|
|
|
|
outside_index_root,
|
|
|
|
|
|
config.n_cpu,
|
2026-08-04 15:47:05 +08:00
|
|
|
|
index_mode,
|
2026-07-19 21:17:17 +08:00
|
|
|
|
)
|
|
|
|
|
|
)
|
|
|
|
|
|
process = start_train_process(state, cmd)
|
|
|
|
|
|
yield from wait_train_processes(
|
|
|
|
|
|
state, [process], log_path, "索引训练", format_output
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
2026-08-04 15:47:05 +08:00
|
|
|
|
def train_index(exp_dir1, version19, training_mode=None):
|
2026-07-19 21:17:17 +08:00
|
|
|
|
action, state = begin_train_task("索引训练")
|
|
|
|
|
|
if action == "busy":
|
|
|
|
|
|
yield (
|
|
|
|
|
|
format_status(
|
|
|
|
|
|
"索引训练",
|
|
|
|
|
|
"等待中",
|
|
|
|
|
|
i18n("%s运行中,请先停止该任务") % i18n(state["name"]),
|
|
|
|
|
|
),
|
|
|
|
|
|
button_update(),
|
|
|
|
|
|
button_update(),
|
|
|
|
|
|
)
|
|
|
|
|
|
return
|
|
|
|
|
|
final_info = None
|
|
|
|
|
|
try:
|
|
|
|
|
|
yield (
|
|
|
|
|
|
format_status("索引训练", "正在启动"),
|
|
|
|
|
|
button_update(visible=False),
|
|
|
|
|
|
button_update(visible=True),
|
|
|
|
|
|
)
|
2026-08-04 15:47:05 +08:00
|
|
|
|
for info in run_train_index(exp_dir1, version19, state, True, training_mode):
|
2026-07-19 21:17:17 +08:00
|
|
|
|
yield info, button_update(visible=False), button_update(visible=True)
|
|
|
|
|
|
if train_task_stopped(state):
|
|
|
|
|
|
final_info = format_status("索引训练", "已停止")
|
|
|
|
|
|
except Exception:
|
|
|
|
|
|
final_info = format_status("索引训练", "失败", traceback.format_exc())
|
|
|
|
|
|
finally:
|
|
|
|
|
|
finish_train_task(state)
|
|
|
|
|
|
if final_info is None:
|
|
|
|
|
|
final_info = format_status("索引训练", "已完成")
|
|
|
|
|
|
yield final_info, button_update(visible=True), button_update(visible=False)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def stop_train_index():
|
|
|
|
|
|
return stop_train_task("索引训练")
|
|
|
|
|
|
|
|
|
|
|
|
# but5.click(train1key, [exp_dir1, sr2, if_f0_3, trainset_dir4, spk_id5, gpus6, np7, f0method8, save_epoch10, total_epoch11, batch_size12, if_save_latest13, pretrained_G14, pretrained_D15, gpus16, if_cache_gpu17], info3)
|
|
|
|
|
|
def train1key(
|
|
|
|
|
|
exp_dir1,
|
|
|
|
|
|
sr2,
|
|
|
|
|
|
if_f0_3,
|
|
|
|
|
|
trainset_dir4,
|
|
|
|
|
|
spk_id5,
|
|
|
|
|
|
np7,
|
|
|
|
|
|
f0method8,
|
|
|
|
|
|
save_epoch10,
|
|
|
|
|
|
total_epoch11,
|
|
|
|
|
|
batch_size12,
|
|
|
|
|
|
if_save_latest13,
|
|
|
|
|
|
pretrained_G14,
|
|
|
|
|
|
pretrained_D15,
|
|
|
|
|
|
gpus16,
|
|
|
|
|
|
if_cache_gpu17,
|
|
|
|
|
|
if_save_every_weights18,
|
|
|
|
|
|
version19,
|
|
|
|
|
|
gpus_rmvpe,
|
2026-08-04 15:47:05 +08:00
|
|
|
|
training_mode=None,
|
2026-07-19 21:17:17 +08:00
|
|
|
|
):
|
|
|
|
|
|
known_models = tuple(weight_names())
|
|
|
|
|
|
action, state = begin_train_task("一键训练")
|
|
|
|
|
|
if action == "busy":
|
|
|
|
|
|
yield (
|
|
|
|
|
|
format_status(
|
|
|
|
|
|
"一键训练",
|
|
|
|
|
|
"等待中",
|
|
|
|
|
|
i18n("%s运行中,请先停止该任务") % i18n(state["name"]),
|
|
|
|
|
|
),
|
|
|
|
|
|
button_update(),
|
|
|
|
|
|
button_update(),
|
|
|
|
|
|
button_update(),
|
|
|
|
|
|
)
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
|
completed_steps = []
|
|
|
|
|
|
step = ""
|
|
|
|
|
|
final_info = None
|
|
|
|
|
|
running = True
|
|
|
|
|
|
start_button = button_update(visible=False)
|
|
|
|
|
|
stop_button = button_update(visible=True)
|
|
|
|
|
|
try:
|
|
|
|
|
|
yield (
|
|
|
|
|
|
format_status("一键训练", "正在启动"),
|
|
|
|
|
|
start_button,
|
|
|
|
|
|
stop_button,
|
|
|
|
|
|
button_update(),
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
step = "数据切分"
|
|
|
|
|
|
yield (
|
|
|
|
|
|
format_workflow_status(step, completed_steps=completed_steps),
|
|
|
|
|
|
start_button,
|
|
|
|
|
|
stop_button,
|
|
|
|
|
|
button_update(),
|
|
|
|
|
|
)
|
|
|
|
|
|
for info in run_preprocess_dataset(
|
2026-08-04 15:47:05 +08:00
|
|
|
|
trainset_dir4,
|
|
|
|
|
|
exp_dir1,
|
|
|
|
|
|
sr2,
|
|
|
|
|
|
np7,
|
|
|
|
|
|
state,
|
|
|
|
|
|
False,
|
|
|
|
|
|
training_mode,
|
2026-07-19 21:17:17 +08:00
|
|
|
|
):
|
|
|
|
|
|
yield (
|
|
|
|
|
|
format_workflow_status(step, info, completed_steps),
|
|
|
|
|
|
start_button,
|
|
|
|
|
|
stop_button,
|
|
|
|
|
|
button_update(),
|
|
|
|
|
|
)
|
|
|
|
|
|
running = not train_task_stopped(state)
|
|
|
|
|
|
if running:
|
|
|
|
|
|
completed_steps.append(step)
|
|
|
|
|
|
|
|
|
|
|
|
if running:
|
|
|
|
|
|
step = "F0与HuBERT特征提取"
|
|
|
|
|
|
yield (
|
|
|
|
|
|
format_workflow_status(step, completed_steps=completed_steps),
|
|
|
|
|
|
start_button,
|
|
|
|
|
|
stop_button,
|
|
|
|
|
|
button_update(),
|
|
|
|
|
|
)
|
|
|
|
|
|
for info in run_extract_f0_feature(
|
|
|
|
|
|
gpus16,
|
|
|
|
|
|
np7,
|
|
|
|
|
|
f0method8,
|
|
|
|
|
|
if_f0_3,
|
|
|
|
|
|
exp_dir1,
|
|
|
|
|
|
version19,
|
|
|
|
|
|
gpus_rmvpe,
|
|
|
|
|
|
state,
|
|
|
|
|
|
False,
|
|
|
|
|
|
):
|
|
|
|
|
|
yield (
|
|
|
|
|
|
format_workflow_status(step, info, completed_steps),
|
|
|
|
|
|
start_button,
|
|
|
|
|
|
stop_button,
|
|
|
|
|
|
button_update(),
|
|
|
|
|
|
)
|
|
|
|
|
|
running = not train_task_stopped(state)
|
|
|
|
|
|
if running:
|
|
|
|
|
|
completed_steps.append(step)
|
|
|
|
|
|
|
|
|
|
|
|
if running:
|
|
|
|
|
|
step = "模型训练"
|
|
|
|
|
|
yield (
|
|
|
|
|
|
format_workflow_status(step, completed_steps=completed_steps),
|
|
|
|
|
|
start_button,
|
|
|
|
|
|
stop_button,
|
|
|
|
|
|
button_update(),
|
|
|
|
|
|
)
|
|
|
|
|
|
for info in run_train_model(
|
|
|
|
|
|
exp_dir1,
|
|
|
|
|
|
sr2,
|
|
|
|
|
|
if_f0_3,
|
|
|
|
|
|
spk_id5,
|
|
|
|
|
|
save_epoch10,
|
|
|
|
|
|
total_epoch11,
|
|
|
|
|
|
batch_size12,
|
|
|
|
|
|
if_save_latest13,
|
|
|
|
|
|
pretrained_G14,
|
|
|
|
|
|
pretrained_D15,
|
|
|
|
|
|
gpus16,
|
|
|
|
|
|
if_cache_gpu17,
|
|
|
|
|
|
if_save_every_weights18,
|
|
|
|
|
|
version19,
|
|
|
|
|
|
state,
|
|
|
|
|
|
False,
|
2026-08-04 15:47:05 +08:00
|
|
|
|
training_mode,
|
2026-07-19 21:17:17 +08:00
|
|
|
|
):
|
|
|
|
|
|
known_models, model_update = refresh_weight_choices(known_models)
|
|
|
|
|
|
yield (
|
|
|
|
|
|
format_workflow_status(step, info, completed_steps),
|
|
|
|
|
|
start_button,
|
|
|
|
|
|
stop_button,
|
|
|
|
|
|
model_update,
|
|
|
|
|
|
)
|
|
|
|
|
|
if not train_task_stopped(state):
|
|
|
|
|
|
yield (
|
|
|
|
|
|
format_workflow_status(step, completed_steps=completed_steps),
|
|
|
|
|
|
start_button,
|
|
|
|
|
|
stop_button,
|
|
|
|
|
|
change_choices(),
|
|
|
|
|
|
)
|
|
|
|
|
|
running = not train_task_stopped(state)
|
|
|
|
|
|
if running:
|
|
|
|
|
|
completed_steps.append(step)
|
|
|
|
|
|
|
|
|
|
|
|
if running:
|
|
|
|
|
|
step = "索引训练"
|
|
|
|
|
|
yield (
|
|
|
|
|
|
format_workflow_status(step, completed_steps=completed_steps),
|
|
|
|
|
|
start_button,
|
|
|
|
|
|
stop_button,
|
|
|
|
|
|
button_update(),
|
|
|
|
|
|
)
|
2026-08-04 15:47:05 +08:00
|
|
|
|
for info in run_train_index(
|
|
|
|
|
|
exp_dir1, version19, state, False, training_mode
|
|
|
|
|
|
):
|
2026-07-19 21:17:17 +08:00
|
|
|
|
yield (
|
|
|
|
|
|
format_workflow_status(step, info, completed_steps),
|
|
|
|
|
|
start_button,
|
|
|
|
|
|
stop_button,
|
|
|
|
|
|
button_update(),
|
|
|
|
|
|
)
|
|
|
|
|
|
running = not train_task_stopped(state)
|
|
|
|
|
|
if running:
|
|
|
|
|
|
completed_steps.append(step)
|
|
|
|
|
|
|
|
|
|
|
|
if not running:
|
|
|
|
|
|
final_info = format_workflow_status(
|
|
|
|
|
|
step, completed_steps=completed_steps, state="已停止"
|
|
|
|
|
|
)
|
|
|
|
|
|
else:
|
|
|
|
|
|
final_info = format_workflow_status(
|
|
|
|
|
|
"", completed_steps=completed_steps, state="已完成"
|
|
|
|
|
|
)
|
|
|
|
|
|
except Exception:
|
|
|
|
|
|
final_info = format_workflow_status(
|
|
|
|
|
|
step,
|
|
|
|
|
|
traceback.format_exc(),
|
|
|
|
|
|
completed_steps,
|
|
|
|
|
|
"失败",
|
|
|
|
|
|
)
|
|
|
|
|
|
finally:
|
|
|
|
|
|
finish_train_task(state)
|
|
|
|
|
|
model_update = change_choices()
|
|
|
|
|
|
yield (
|
|
|
|
|
|
final_info,
|
|
|
|
|
|
button_update(visible=True),
|
|
|
|
|
|
button_update(visible=False),
|
|
|
|
|
|
model_update,
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def stop_train1key():
|
|
|
|
|
|
return stop_train_task("一键训练")
|
|
|
|
|
|
|
|
|
|
|
|
# ckpt_path2.change(change_info_,[ckpt_path2],[sr__,if_f0__])
|
|
|
|
|
|
def change_info_(ckpt_path):
|
|
|
|
|
|
if not os.path.exists(ckpt_path.replace(os.path.basename(ckpt_path), "train.log")):
|
|
|
|
|
|
return {"__type__": "update"}, {"__type__": "update"}, {"__type__": "update"}
|
|
|
|
|
|
try:
|
|
|
|
|
|
info = eval(
|
|
|
|
|
|
read_text(
|
|
|
|
|
|
ckpt_path.replace(os.path.basename(ckpt_path), "train.log")
|
|
|
|
|
|
)
|
|
|
|
|
|
.strip("\n")
|
|
|
|
|
|
.split("\n")[0]
|
|
|
|
|
|
.split("\t")[-1]
|
|
|
|
|
|
)
|
|
|
|
|
|
sr, f0 = info["sample_rate"], info["if_f0"]
|
|
|
|
|
|
version = "v2" if ("version" in info and info["version"] == "v2") else "v1"
|
|
|
|
|
|
return sr, str(f0), version
|
|
|
|
|
|
except Exception:
|
|
|
|
|
|
traceback.print_exc()
|
|
|
|
|
|
return {"__type__": "update"}, {"__type__": "update"}, {"__type__": "update"}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
F0GPUVisible = IS_GPU
|
|
|
|
|
|
|
2026-07-23 22:42:29 +08:00
|
|
|
|
TRAINING_INFO_CSS = """
|
|
|
|
|
|
#training-info-step2b textarea,
|
|
|
|
|
|
#training-info-step3 textarea {
|
|
|
|
|
|
height: 12rem !important;
|
|
|
|
|
|
min-height: 12rem !important;
|
|
|
|
|
|
max-height: 12rem !important;
|
|
|
|
|
|
overflow-y: auto !important;
|
|
|
|
|
|
resize: none !important;
|
|
|
|
|
|
}
|
2026-08-04 15:47:05 +08:00
|
|
|
|
#training-info-step2a textarea {
|
|
|
|
|
|
height: 8rem !important;
|
|
|
|
|
|
min-height: 8rem !important;
|
|
|
|
|
|
max-height: 8rem !important;
|
|
|
|
|
|
overflow-y: auto !important;
|
|
|
|
|
|
resize: none !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
.multispeaker-help {
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
display: inline-block;
|
|
|
|
|
|
margin: 8px 0 0 6px;
|
|
|
|
|
|
color: #2563eb;
|
|
|
|
|
|
cursor: help;
|
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
z-index: 10001;
|
|
|
|
|
|
}
|
|
|
|
|
|
.multispeaker-help > .multispeaker-help-popup {
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
left: 18px;
|
|
|
|
|
|
top: -8px;
|
|
|
|
|
|
width: min(480px, calc(100vw - 80px));
|
|
|
|
|
|
padding: 14px 16px;
|
|
|
|
|
|
border: 1px solid #93c5fd;
|
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
|
background: #eff6ff;
|
|
|
|
|
|
color: #1e3a8a;
|
|
|
|
|
|
box-shadow: 0 10px 28px rgba(15, 23, 42, .18);
|
|
|
|
|
|
line-height: 1.55;
|
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
|
z-index: 10002;
|
|
|
|
|
|
opacity: 0;
|
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
|
transform: translateY(-4px);
|
|
|
|
|
|
transition: opacity .16s ease, transform .16s ease;
|
|
|
|
|
|
}
|
|
|
|
|
|
.multispeaker-help-warning {
|
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
|
color: #b91c1c;
|
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
}
|
|
|
|
|
|
.multispeaker-help:hover > .multispeaker-help-popup,
|
|
|
|
|
|
.multispeaker-help:focus-within > .multispeaker-help-popup {
|
|
|
|
|
|
opacity: 1;
|
|
|
|
|
|
transform: translateY(0);
|
|
|
|
|
|
}
|
|
|
|
|
|
#training-mode-column {
|
|
|
|
|
|
flex: 0 0 270px !important;
|
|
|
|
|
|
min-width: 270px !important;
|
|
|
|
|
|
max-width: 270px !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
#training-mode-selector .wrap {
|
|
|
|
|
|
flex-wrap: nowrap !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
#multispeaker-help-column {
|
|
|
|
|
|
position: relative !important;
|
|
|
|
|
|
z-index: 10000 !important;
|
|
|
|
|
|
flex: 0 0 44px !important;
|
|
|
|
|
|
min-width: 44px !important;
|
|
|
|
|
|
max-width: 44px !important;
|
|
|
|
|
|
overflow: visible !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
#multispeaker-help-column > div {
|
|
|
|
|
|
overflow: visible !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
.multispeaker-submit-status {
|
|
|
|
|
|
padding: 10px 12px;
|
|
|
|
|
|
border: 1px solid;
|
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
|
white-space: pre-wrap;
|
|
|
|
|
|
line-height: 1.45;
|
|
|
|
|
|
}
|
2026-07-23 22:42:29 +08:00
|
|
|
|
"""
|
|
|
|
|
|
|
2026-07-19 21:17:17 +08:00
|
|
|
|
|
|
|
|
|
|
def change_f0_method(f0method8):
|
|
|
|
|
|
if f0method8 == "rmvpe":
|
|
|
|
|
|
visible = F0GPUVisible
|
|
|
|
|
|
else:
|
|
|
|
|
|
visible = False
|
|
|
|
|
|
return {"visible": visible, "__type__": "update"}
|
|
|
|
|
|
|
|
|
|
|
|
|
2026-07-23 22:42:29 +08:00
|
|
|
|
with gr.Blocks(title="RVC WebUI", css=TRAINING_INFO_CSS) as app:
|
2026-07-19 21:17:17 +08:00
|
|
|
|
gr.Markdown("## RVC WebUI")
|
|
|
|
|
|
gr.Markdown(
|
|
|
|
|
|
value=i18n(
|
|
|
|
|
|
"本软件以MIT协议开源, 作者不对软件具备任何控制力, 使用软件者、传播软件导出的声音者自负全责. <br>如不认可该条款, 则不能使用或引用软件包内任何代码和文件. 详见根目录<b>LICENSE</b>."
|
|
|
|
|
|
)
|
|
|
|
|
|
)
|
|
|
|
|
|
with gr.Tabs():
|
|
|
|
|
|
with gr.TabItem(i18n("模型推理")):
|
|
|
|
|
|
with gr.Row():
|
|
|
|
|
|
sid0 = gr.Dropdown(label=i18n("推理音色"), choices=sorted(names))
|
|
|
|
|
|
with gr.Column():
|
|
|
|
|
|
refresh_button = gr.Button(
|
|
|
|
|
|
i18n("刷新音色列表"), variant="primary"
|
|
|
|
|
|
)
|
|
|
|
|
|
clean_button = gr.Button(i18n("卸载音色省显存"), variant="primary")
|
|
|
|
|
|
spk_item = gr.Slider(
|
|
|
|
|
|
minimum=0,
|
|
|
|
|
|
maximum=2333,
|
|
|
|
|
|
step=1,
|
|
|
|
|
|
label=i18n("请选择说话人id"),
|
|
|
|
|
|
value=0,
|
|
|
|
|
|
visible=False,
|
|
|
|
|
|
interactive=True,
|
|
|
|
|
|
)
|
2026-08-04 15:47:05 +08:00
|
|
|
|
spk_item_dropdown = gr.Dropdown(
|
|
|
|
|
|
label=i18n("选择多说话人音色"),
|
|
|
|
|
|
choices=[],
|
|
|
|
|
|
value=None,
|
|
|
|
|
|
visible=False,
|
|
|
|
|
|
interactive=True,
|
|
|
|
|
|
)
|
2026-07-19 21:17:17 +08:00
|
|
|
|
clean_button.click(
|
|
|
|
|
|
fn=clean, inputs=[], outputs=[sid0], api_name="infer_clean"
|
|
|
|
|
|
)
|
|
|
|
|
|
with gr.TabItem(i18n("单次推理")):
|
|
|
|
|
|
with gr.Group():
|
|
|
|
|
|
with gr.Row():
|
|
|
|
|
|
with gr.Column():
|
|
|
|
|
|
with gr.Row(equal_height=True):
|
|
|
|
|
|
with gr.Column(scale=1, min_width=120):
|
|
|
|
|
|
vc_transform0 = gr.Number(
|
|
|
|
|
|
label=i18n("变调(整数, 半音数量, 升八度12降八度-12)"),
|
|
|
|
|
|
value=0,
|
|
|
|
|
|
)
|
|
|
|
|
|
with gr.Column(scale=2, min_width=200):
|
|
|
|
|
|
f0method0 = gr.Radio(
|
|
|
|
|
|
label=i18n("选择音高提取算法"),
|
|
|
|
|
|
choices=["pm", "rmvpe", "fcpe"],
|
|
|
|
|
|
value="rmvpe",
|
|
|
|
|
|
interactive=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
input_audio0 = gr.Audio(
|
|
|
|
|
|
label=i18n("拖拽或点击上传待处理音频"),
|
|
|
|
|
|
source="upload",
|
|
|
|
|
|
type="filepath",
|
|
|
|
|
|
interactive=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
with gr.Column():
|
|
|
|
|
|
resample_sr0 = gr.Slider(
|
|
|
|
|
|
minimum=0,
|
|
|
|
|
|
maximum=48000,
|
|
|
|
|
|
label=i18n("后处理重采样至最终采样率,0为不进行重采样"),
|
|
|
|
|
|
value=0,
|
|
|
|
|
|
step=1,
|
|
|
|
|
|
interactive=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
rms_mix_rate0 = gr.Slider(
|
|
|
|
|
|
minimum=0,
|
|
|
|
|
|
maximum=1,
|
|
|
|
|
|
label=i18n(
|
|
|
|
|
|
"输入源音量包络替换输出音量包络融合比例,越靠近1越使用输出包络"
|
|
|
|
|
|
),
|
|
|
|
|
|
value=0.25,
|
|
|
|
|
|
interactive=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
protect0 = gr.Slider(
|
|
|
|
|
|
minimum=0,
|
|
|
|
|
|
maximum=0.5,
|
|
|
|
|
|
label=i18n(
|
|
|
|
|
|
"保护清辅音和呼吸声,防止电音撕裂等artifact,拉满0.5不开启,调低加大保护力度但可能降低索引效果"
|
|
|
|
|
|
),
|
|
|
|
|
|
value=0.33,
|
|
|
|
|
|
step=0.01,
|
|
|
|
|
|
interactive=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
index_rate1 = gr.Slider(
|
|
|
|
|
|
minimum=0,
|
|
|
|
|
|
maximum=1,
|
|
|
|
|
|
label=i18n("检索特征占比"),
|
|
|
|
|
|
value=0.75,
|
|
|
|
|
|
interactive=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
file_index1 = gr.Textbox(
|
|
|
|
|
|
label=i18n("特征检索库文件路径(选择模型后自动匹配,可手动修改)"),
|
|
|
|
|
|
placeholder="C:\\Users\\Desktop\\model_example.index",
|
|
|
|
|
|
interactive=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
refresh_button.click(
|
|
|
|
|
|
fn=change_choices,
|
|
|
|
|
|
inputs=[],
|
|
|
|
|
|
outputs=sid0,
|
|
|
|
|
|
api_name="infer_refresh",
|
|
|
|
|
|
)
|
|
|
|
|
|
with gr.Group():
|
|
|
|
|
|
with gr.Column():
|
|
|
|
|
|
but0 = gr.Button(i18n("转换"), variant="primary")
|
|
|
|
|
|
with gr.Row():
|
|
|
|
|
|
vc_output1 = gr.Textbox(label=i18n("输出信息"))
|
|
|
|
|
|
vc_output2 = gr.Audio(
|
|
|
|
|
|
label=i18n("输出音频(右下角三个点,点了可以下载)")
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
but0.click(
|
2026-08-04 15:47:05 +08:00
|
|
|
|
report_missing_index,
|
|
|
|
|
|
[file_index1],
|
|
|
|
|
|
[],
|
|
|
|
|
|
queue=False,
|
|
|
|
|
|
api_name="infer_check_index",
|
|
|
|
|
|
)
|
|
|
|
|
|
but0.click(
|
|
|
|
|
|
vc_single_with_speaker,
|
2026-07-19 21:17:17 +08:00
|
|
|
|
[
|
|
|
|
|
|
spk_item,
|
2026-08-04 15:47:05 +08:00
|
|
|
|
spk_item_dropdown,
|
2026-07-19 21:17:17 +08:00
|
|
|
|
input_audio0,
|
|
|
|
|
|
vc_transform0,
|
|
|
|
|
|
f0method0,
|
|
|
|
|
|
file_index1,
|
|
|
|
|
|
index_rate1,
|
|
|
|
|
|
resample_sr0,
|
|
|
|
|
|
rms_mix_rate0,
|
|
|
|
|
|
protect0,
|
|
|
|
|
|
],
|
|
|
|
|
|
[vc_output1, vc_output2],
|
|
|
|
|
|
api_name="infer_convert",
|
|
|
|
|
|
)
|
|
|
|
|
|
with gr.TabItem(i18n("批量推理")):
|
|
|
|
|
|
gr.Markdown(
|
|
|
|
|
|
value=i18n(
|
|
|
|
|
|
"批量转换, 输入待转换音频文件夹, 或上传多个音频文件, 在指定文件夹(默认opt)下输出转换的音频. "
|
|
|
|
|
|
)
|
|
|
|
|
|
)
|
|
|
|
|
|
with gr.Row():
|
|
|
|
|
|
with gr.Column():
|
|
|
|
|
|
vc_transform1 = gr.Number(
|
|
|
|
|
|
label=i18n("变调(整数, 半音数量, 升八度12降八度-12)"),
|
|
|
|
|
|
value=0,
|
|
|
|
|
|
)
|
|
|
|
|
|
opt_input = gr.Textbox(
|
|
|
|
|
|
label=i18n("指定输出文件夹"), value="opt"
|
|
|
|
|
|
)
|
|
|
|
|
|
file_index3 = gr.Textbox(
|
|
|
|
|
|
label=i18n("特征检索库文件路径(选择模型后自动匹配,可手动修改)"),
|
|
|
|
|
|
value="",
|
|
|
|
|
|
interactive=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
f0method1 = gr.Radio(
|
|
|
|
|
|
label=i18n("选择音高提取算法"),
|
|
|
|
|
|
choices=["pm", "rmvpe", "fcpe"],
|
|
|
|
|
|
value="rmvpe",
|
|
|
|
|
|
interactive=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
format1 = gr.Radio(
|
|
|
|
|
|
label=i18n("导出文件格式"),
|
|
|
|
|
|
choices=["wav", "flac", "mp3", "m4a"],
|
|
|
|
|
|
value="wav",
|
|
|
|
|
|
interactive=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
with gr.Column():
|
|
|
|
|
|
resample_sr1 = gr.Slider(
|
|
|
|
|
|
minimum=0,
|
|
|
|
|
|
maximum=48000,
|
|
|
|
|
|
label=i18n("后处理重采样至最终采样率,0为不进行重采样"),
|
|
|
|
|
|
value=0,
|
|
|
|
|
|
step=1,
|
|
|
|
|
|
interactive=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
rms_mix_rate1 = gr.Slider(
|
|
|
|
|
|
minimum=0,
|
|
|
|
|
|
maximum=1,
|
|
|
|
|
|
label=i18n(
|
|
|
|
|
|
"输入源音量包络替换输出音量包络融合比例,越靠近1越使用输出包络"
|
|
|
|
|
|
),
|
|
|
|
|
|
value=1,
|
|
|
|
|
|
interactive=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
protect1 = gr.Slider(
|
|
|
|
|
|
minimum=0,
|
|
|
|
|
|
maximum=0.5,
|
|
|
|
|
|
label=i18n(
|
|
|
|
|
|
"保护清辅音和呼吸声,防止电音撕裂等artifact,拉满0.5不开启,调低加大保护力度但可能降低索引效果"
|
|
|
|
|
|
),
|
|
|
|
|
|
value=0.33,
|
|
|
|
|
|
step=0.01,
|
|
|
|
|
|
interactive=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
index_rate2 = gr.Slider(
|
|
|
|
|
|
minimum=0,
|
|
|
|
|
|
maximum=1,
|
|
|
|
|
|
label=i18n("检索特征占比"),
|
|
|
|
|
|
value=1,
|
|
|
|
|
|
interactive=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
with gr.Row():
|
|
|
|
|
|
dir_input = gr.Textbox(
|
|
|
|
|
|
label=i18n(
|
|
|
|
|
|
"输入待处理音频文件夹路径(去文件管理器地址栏拷就行了)"
|
|
|
|
|
|
),
|
|
|
|
|
|
placeholder="C:\\Users\\Desktop\\input_vocal_dir",
|
|
|
|
|
|
)
|
|
|
|
|
|
inputs = gr.File(
|
|
|
|
|
|
file_count="multiple",
|
|
|
|
|
|
label=i18n("也可批量输入音频文件, 二选一, 优先读文件夹"),
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
with gr.Row():
|
|
|
|
|
|
but1 = gr.Button(i18n("转换"), variant="primary")
|
|
|
|
|
|
vc_output3 = gr.Textbox(label=i18n("输出信息"))
|
|
|
|
|
|
|
|
|
|
|
|
but1.click(
|
2026-08-04 15:47:05 +08:00
|
|
|
|
report_missing_index,
|
|
|
|
|
|
[file_index3],
|
|
|
|
|
|
[],
|
|
|
|
|
|
queue=False,
|
|
|
|
|
|
api_name="infer_check_index_batch",
|
|
|
|
|
|
)
|
|
|
|
|
|
but1.click(
|
|
|
|
|
|
vc_multi_with_speaker,
|
2026-07-19 21:17:17 +08:00
|
|
|
|
[
|
|
|
|
|
|
spk_item,
|
2026-08-04 15:47:05 +08:00
|
|
|
|
spk_item_dropdown,
|
2026-07-19 21:17:17 +08:00
|
|
|
|
dir_input,
|
|
|
|
|
|
opt_input,
|
|
|
|
|
|
inputs,
|
|
|
|
|
|
vc_transform1,
|
|
|
|
|
|
f0method1,
|
|
|
|
|
|
file_index3,
|
|
|
|
|
|
index_rate2,
|
|
|
|
|
|
resample_sr1,
|
|
|
|
|
|
rms_mix_rate1,
|
|
|
|
|
|
protect1,
|
|
|
|
|
|
format1,
|
|
|
|
|
|
],
|
|
|
|
|
|
[vc_output3],
|
|
|
|
|
|
api_name="infer_convert_batch",
|
|
|
|
|
|
)
|
|
|
|
|
|
sid0.change(
|
|
|
|
|
|
fn=vc.get_vc,
|
|
|
|
|
|
inputs=[sid0, protect0, protect1],
|
2026-08-04 15:47:05 +08:00
|
|
|
|
outputs=[
|
|
|
|
|
|
spk_item,
|
|
|
|
|
|
spk_item_dropdown,
|
|
|
|
|
|
protect0,
|
|
|
|
|
|
protect1,
|
|
|
|
|
|
file_index1,
|
|
|
|
|
|
file_index3,
|
|
|
|
|
|
],
|
2026-07-19 21:17:17 +08:00
|
|
|
|
api_name="infer_change_voice",
|
|
|
|
|
|
)
|
2026-08-04 15:47:05 +08:00
|
|
|
|
spk_item.change(
|
|
|
|
|
|
fn=update_speaker_index,
|
|
|
|
|
|
inputs=[sid0, spk_item, spk_item_dropdown],
|
|
|
|
|
|
outputs=[file_index1, file_index3],
|
|
|
|
|
|
queue=False,
|
|
|
|
|
|
api_name="infer_change_speaker_index_slider",
|
|
|
|
|
|
)
|
|
|
|
|
|
spk_item_dropdown.change(
|
|
|
|
|
|
fn=update_dropdown_speaker_index,
|
|
|
|
|
|
inputs=[sid0, spk_item_dropdown],
|
|
|
|
|
|
outputs=[file_index1, file_index3],
|
|
|
|
|
|
queue=False,
|
|
|
|
|
|
api_name="infer_change_speaker_index_dropdown",
|
|
|
|
|
|
)
|
2026-07-23 01:40:12 +08:00
|
|
|
|
with gr.TabItem(i18n("人声伴奏分离&去混响")):
|
2026-07-19 21:17:17 +08:00
|
|
|
|
with gr.Group():
|
|
|
|
|
|
gr.Markdown(
|
|
|
|
|
|
value=i18n(
|
2026-07-23 01:40:12 +08:00
|
|
|
|
"人声、伴奏与混响批量处理,使用pymss/MSST模型。"
|
2026-07-19 21:17:17 +08:00
|
|
|
|
)
|
|
|
|
|
|
)
|
|
|
|
|
|
with gr.Row():
|
|
|
|
|
|
with gr.Column():
|
|
|
|
|
|
dir_wav_input = gr.Textbox(
|
|
|
|
|
|
label=i18n("输入待处理音频文件夹路径"),
|
|
|
|
|
|
placeholder="C:\\Users\\Desktop\\todo-songs",
|
|
|
|
|
|
)
|
|
|
|
|
|
wav_inputs = gr.File(
|
|
|
|
|
|
file_count="multiple",
|
|
|
|
|
|
label=i18n("也可批量输入音频文件, 二选一, 优先读文件夹"),
|
|
|
|
|
|
)
|
|
|
|
|
|
with gr.Column():
|
|
|
|
|
|
model_choose = gr.Dropdown(
|
2026-07-23 01:40:12 +08:00
|
|
|
|
label=i18n("处理方式"),
|
|
|
|
|
|
choices=pymss_names,
|
|
|
|
|
|
value=pymss_names[0],
|
2026-07-19 21:17:17 +08:00
|
|
|
|
interactive=True,
|
2026-07-23 01:40:12 +08:00
|
|
|
|
)
|
|
|
|
|
|
model_info = gr.Textbox(
|
|
|
|
|
|
label=i18n("底层模型"),
|
|
|
|
|
|
value=get_model_info(pymss_names[0]),
|
|
|
|
|
|
interactive=False,
|
|
|
|
|
|
)
|
|
|
|
|
|
model_choose.change(
|
|
|
|
|
|
get_model_info,
|
|
|
|
|
|
[model_choose],
|
|
|
|
|
|
[model_info],
|
|
|
|
|
|
queue=False,
|
2026-07-19 21:17:17 +08:00
|
|
|
|
)
|
|
|
|
|
|
opt_vocal_root = gr.Textbox(
|
2026-07-23 01:40:12 +08:00
|
|
|
|
label=i18n("主结果文件夹"), value="opt"
|
2026-07-19 21:17:17 +08:00
|
|
|
|
)
|
|
|
|
|
|
opt_ins_root = gr.Textbox(
|
2026-07-23 01:40:12 +08:00
|
|
|
|
label=i18n("分离残余文件夹"), value="opt"
|
2026-07-19 21:17:17 +08:00
|
|
|
|
)
|
|
|
|
|
|
format0 = gr.Radio(
|
|
|
|
|
|
label=i18n("导出文件格式"),
|
|
|
|
|
|
choices=["wav", "flac", "mp3", "m4a"],
|
|
|
|
|
|
value="flac",
|
|
|
|
|
|
interactive=True,
|
|
|
|
|
|
)
|
2026-07-23 22:00:19 +08:00
|
|
|
|
with gr.Row():
|
|
|
|
|
|
but2 = gr.Button(i18n("转换"), variant="primary")
|
|
|
|
|
|
stop_pymss_button = gr.Button(
|
|
|
|
|
|
i18n("停止分离"), variant="stop", visible=False
|
|
|
|
|
|
)
|
|
|
|
|
|
pymss_progress = gr.HTML(
|
|
|
|
|
|
value=render_pymss_progress(0, "等待开始", "idle")
|
|
|
|
|
|
)
|
2026-07-19 21:17:17 +08:00
|
|
|
|
vc_output4 = gr.Textbox(label=i18n("输出信息"))
|
|
|
|
|
|
but2.click(
|
2026-07-23 22:00:19 +08:00
|
|
|
|
run_pymss_separation,
|
2026-07-19 21:17:17 +08:00
|
|
|
|
[
|
|
|
|
|
|
model_choose,
|
|
|
|
|
|
dir_wav_input,
|
|
|
|
|
|
opt_vocal_root,
|
|
|
|
|
|
wav_inputs,
|
|
|
|
|
|
opt_ins_root,
|
|
|
|
|
|
format0,
|
|
|
|
|
|
],
|
2026-07-23 22:00:19 +08:00
|
|
|
|
[vc_output4, pymss_progress, but2, stop_pymss_button],
|
|
|
|
|
|
api_name="pymss_separate",
|
|
|
|
|
|
)
|
|
|
|
|
|
stop_pymss_button.click(
|
|
|
|
|
|
stop_pymss_webui,
|
|
|
|
|
|
[],
|
|
|
|
|
|
[vc_output4, pymss_progress, but2, stop_pymss_button],
|
|
|
|
|
|
queue=False,
|
2026-07-19 21:17:17 +08:00
|
|
|
|
)
|
|
|
|
|
|
with gr.TabItem(i18n("训练")):
|
|
|
|
|
|
gr.Markdown(
|
|
|
|
|
|
value=i18n(
|
|
|
|
|
|
"step1: 填写实验配置. 实验数据放在logs下, 每个实验一个文件夹, 需手工输入实验名路径, 内含实验配置, 日志, 训练得到的模型文件. "
|
|
|
|
|
|
)
|
|
|
|
|
|
)
|
|
|
|
|
|
with gr.Row():
|
2026-08-04 15:47:05 +08:00
|
|
|
|
exp_dir1 = gr.Textbox(label=i18n("输入实验名,例如:test"))
|
2026-07-19 21:17:17 +08:00
|
|
|
|
sr2 = gr.Radio(
|
|
|
|
|
|
label=i18n("目标采样率"),
|
|
|
|
|
|
choices=["40k", "48k"],
|
|
|
|
|
|
value="40k",
|
|
|
|
|
|
interactive=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
if_f0_3 = gr.Radio(
|
|
|
|
|
|
label=i18n("模型是否带音高指导(唱歌一定要, 语音可以不要)"),
|
|
|
|
|
|
choices=[True, False],
|
|
|
|
|
|
value=True,
|
|
|
|
|
|
interactive=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
version19 = gr.Radio(
|
|
|
|
|
|
label=i18n("版本"),
|
|
|
|
|
|
choices=["v1", "v2"],
|
|
|
|
|
|
value="v2",
|
|
|
|
|
|
interactive=True,
|
|
|
|
|
|
visible=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
np7 = gr.Slider(
|
|
|
|
|
|
minimum=0,
|
|
|
|
|
|
maximum=config.n_cpu,
|
|
|
|
|
|
step=1,
|
|
|
|
|
|
label=i18n("提取音高和处理数据使用的CPU进程数"),
|
|
|
|
|
|
value=int(np.ceil(config.n_cpu / 1.5)),
|
|
|
|
|
|
interactive=True,
|
|
|
|
|
|
)
|
2026-08-04 15:47:05 +08:00
|
|
|
|
with gr.Group():
|
2026-07-19 21:17:17 +08:00
|
|
|
|
gr.Markdown(
|
|
|
|
|
|
value=i18n(
|
2026-08-04 15:47:05 +08:00
|
|
|
|
"step2a: 扫描训练音频并进行切片归一化,在实验目录下生成训练wav文件。"
|
2026-07-19 21:17:17 +08:00
|
|
|
|
)
|
|
|
|
|
|
)
|
2026-08-04 15:47:05 +08:00
|
|
|
|
with gr.Row(equal_height=False):
|
|
|
|
|
|
with gr.Column(scale=5, min_width=420):
|
|
|
|
|
|
with gr.Row():
|
|
|
|
|
|
with gr.Column(
|
|
|
|
|
|
scale=0,
|
|
|
|
|
|
min_width=270,
|
|
|
|
|
|
elem_id="training-mode-column",
|
|
|
|
|
|
):
|
|
|
|
|
|
training_mode = gr.Radio(
|
|
|
|
|
|
label=i18n("训练集类型"),
|
|
|
|
|
|
choices=[i18n("单说话人"), i18n("多说话人")],
|
|
|
|
|
|
value=i18n("单说话人"),
|
|
|
|
|
|
interactive=True,
|
|
|
|
|
|
elem_id="training-mode-selector",
|
|
|
|
|
|
)
|
|
|
|
|
|
with gr.Column(
|
|
|
|
|
|
scale=0,
|
|
|
|
|
|
min_width=44,
|
|
|
|
|
|
elem_id="multispeaker-help-column",
|
|
|
|
|
|
):
|
|
|
|
|
|
multispeaker_help = gr.HTML(
|
|
|
|
|
|
value=(
|
|
|
|
|
|
'<div class="multispeaker-help" tabindex="0">?'
|
|
|
|
|
|
'<div class="multispeaker-help-popup">'
|
|
|
|
|
|
'<div class="multispeaker-help-warning">%s</div>%s'
|
|
|
|
|
|
"</div></div>"
|
|
|
|
|
|
% (
|
|
|
|
|
|
html.escape(
|
|
|
|
|
|
i18n(
|
|
|
|
|
|
"注意:多说话人训练音色还原度不一定有单说话人分开训练好!"
|
|
|
|
|
|
)
|
|
|
|
|
|
),
|
|
|
|
|
|
html.escape(
|
|
|
|
|
|
i18n(
|
|
|
|
|
|
"多说话人总文件夹只扫描根目录下的直接子文件夹,根目录文件会被忽略。\n子文件夹必须命名为x_y_z:x是说话人名称,y是说话人ID(0~109,共110个),z是训练集重复次数。\n也可以到右侧“多说话人训练集辅助”编辑并提交训练集清单。"
|
|
|
|
|
|
)
|
|
|
|
|
|
).replace("\n", "<br>"),
|
|
|
|
|
|
)
|
|
|
|
|
|
)
|
|
|
|
|
|
)
|
|
|
|
|
|
with gr.Row():
|
|
|
|
|
|
trainset_dir4 = gr.Textbox(
|
|
|
|
|
|
label=i18n(
|
|
|
|
|
|
"输入训练文件夹路径,例如:E:\\我的训练集"
|
|
|
|
|
|
),
|
|
|
|
|
|
)
|
|
|
|
|
|
spk_id5 = gr.Slider(
|
|
|
|
|
|
minimum=0,
|
|
|
|
|
|
maximum=109,
|
|
|
|
|
|
step=1,
|
|
|
|
|
|
label=i18n("请指定说话人id"),
|
|
|
|
|
|
value=0,
|
|
|
|
|
|
interactive=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
with gr.Column(scale=1, min_width=150):
|
|
|
|
|
|
but1 = gr.Button(i18n("处理数据"), variant="primary")
|
|
|
|
|
|
stop_but1 = gr.Button(
|
|
|
|
|
|
i18n("停止处理数据"), variant="stop", visible=False
|
|
|
|
|
|
)
|
|
|
|
|
|
with gr.Column(
|
|
|
|
|
|
scale=3,
|
|
|
|
|
|
min_width=280,
|
|
|
|
|
|
elem_id="step2a-output-column",
|
|
|
|
|
|
):
|
|
|
|
|
|
info1 = gr.Textbox(
|
|
|
|
|
|
label=i18n("输出信息"),
|
|
|
|
|
|
value="",
|
|
|
|
|
|
lines=5,
|
|
|
|
|
|
max_lines=5,
|
|
|
|
|
|
elem_id="training-info-step2a",
|
|
|
|
|
|
)
|
|
|
|
|
|
but1.click(
|
|
|
|
|
|
preprocess_dataset,
|
|
|
|
|
|
[trainset_dir4, exp_dir1, sr2, np7, training_mode],
|
|
|
|
|
|
[info1, but1, stop_but1],
|
|
|
|
|
|
api_name="train_preprocess",
|
|
|
|
|
|
)
|
|
|
|
|
|
stop_but1.click(
|
|
|
|
|
|
stop_preprocess_dataset,
|
|
|
|
|
|
[],
|
|
|
|
|
|
[info1, but1, stop_but1],
|
|
|
|
|
|
queue=False,
|
|
|
|
|
|
)
|
|
|
|
|
|
training_mode.change(
|
|
|
|
|
|
change_training_mode,
|
|
|
|
|
|
[training_mode],
|
|
|
|
|
|
[trainset_dir4, spk_id5],
|
|
|
|
|
|
queue=False,
|
|
|
|
|
|
)
|
2026-07-19 21:17:17 +08:00
|
|
|
|
with gr.Group():
|
|
|
|
|
|
gr.Markdown(
|
|
|
|
|
|
value=i18n(
|
2026-08-04 15:47:05 +08:00
|
|
|
|
"step2b: 音高与hubert语义特征提取"
|
2026-07-19 21:17:17 +08:00
|
|
|
|
)
|
|
|
|
|
|
)
|
2026-08-04 15:47:05 +08:00
|
|
|
|
with gr.Row(equal_height=False):
|
|
|
|
|
|
with gr.Column(scale=3, min_width=320):
|
2026-07-19 21:17:17 +08:00
|
|
|
|
gpus6 = gr.Textbox(
|
|
|
|
|
|
label=i18n(
|
2026-08-04 15:47:05 +08:00
|
|
|
|
"hubert:以-分隔输入使用的卡号, 例如 0-1-2 使用卡0和卡1和卡2"
|
|
|
|
|
|
),
|
|
|
|
|
|
value=feature_gpus,
|
|
|
|
|
|
interactive=True,
|
|
|
|
|
|
visible=F0GPUVisible,
|
|
|
|
|
|
)
|
|
|
|
|
|
gpus_rmvpe = gr.Textbox(
|
|
|
|
|
|
label=i18n(
|
|
|
|
|
|
"rmvpe卡号配置:以-分隔输入使用的不同进程卡号,例如0-0-1使用在卡0上跑2个进程并在卡1上跑1个进程"
|
2026-07-19 21:17:17 +08:00
|
|
|
|
),
|
2026-08-04 15:47:05 +08:00
|
|
|
|
value=feature_gpus,
|
2026-07-19 21:17:17 +08:00
|
|
|
|
interactive=True,
|
|
|
|
|
|
visible=F0GPUVisible,
|
|
|
|
|
|
)
|
2026-08-04 15:47:05 +08:00
|
|
|
|
with gr.Column(scale=2, min_width=260):
|
2026-07-19 21:17:17 +08:00
|
|
|
|
gpu_info9 = gr.Textbox(
|
|
|
|
|
|
label=i18n("显卡信息"), value=gpu_info, visible=F0GPUVisible
|
|
|
|
|
|
)
|
|
|
|
|
|
f0method8 = gr.Radio(
|
|
|
|
|
|
label=i18n("选择音高提取算法"),
|
|
|
|
|
|
choices=["pm", "rmvpe"],
|
2026-08-04 15:47:05 +08:00
|
|
|
|
value=default_training_f0_method,
|
2026-07-19 21:17:17 +08:00
|
|
|
|
interactive=True,
|
|
|
|
|
|
)
|
2026-08-04 15:47:05 +08:00
|
|
|
|
with gr.Column(scale=1, min_width=150):
|
|
|
|
|
|
but2 = gr.Button(i18n("特征提取"), variant="primary")
|
|
|
|
|
|
stop_but2 = gr.Button(
|
|
|
|
|
|
i18n("停止特征提取"), variant="stop", visible=False
|
|
|
|
|
|
)
|
|
|
|
|
|
with gr.Column(
|
|
|
|
|
|
scale=3,
|
|
|
|
|
|
min_width=280,
|
|
|
|
|
|
elem_id="step2b-output-column",
|
|
|
|
|
|
):
|
|
|
|
|
|
info2 = gr.Textbox(
|
|
|
|
|
|
label=i18n("输出信息"),
|
|
|
|
|
|
value="",
|
|
|
|
|
|
lines=8,
|
|
|
|
|
|
max_lines=8,
|
|
|
|
|
|
elem_id="training-info-step2b",
|
2026-07-19 21:17:17 +08:00
|
|
|
|
)
|
|
|
|
|
|
f0method8.change(
|
|
|
|
|
|
fn=change_f0_method,
|
|
|
|
|
|
inputs=[f0method8],
|
|
|
|
|
|
outputs=[gpus_rmvpe],
|
|
|
|
|
|
)
|
|
|
|
|
|
but2.click(
|
|
|
|
|
|
extract_f0_feature,
|
|
|
|
|
|
[
|
|
|
|
|
|
gpus6,
|
|
|
|
|
|
np7,
|
|
|
|
|
|
f0method8,
|
|
|
|
|
|
if_f0_3,
|
|
|
|
|
|
exp_dir1,
|
|
|
|
|
|
version19,
|
|
|
|
|
|
gpus_rmvpe,
|
|
|
|
|
|
],
|
|
|
|
|
|
[info2, but2, stop_but2],
|
|
|
|
|
|
api_name="train_extract_f0_feature",
|
|
|
|
|
|
)
|
|
|
|
|
|
stop_but2.click(
|
|
|
|
|
|
stop_extract_f0_feature,
|
|
|
|
|
|
[],
|
|
|
|
|
|
[info2, but2, stop_but2],
|
|
|
|
|
|
queue=False,
|
|
|
|
|
|
)
|
|
|
|
|
|
with gr.Group():
|
|
|
|
|
|
gr.Markdown(value=i18n("step3: 填写训练设置, 开始训练模型和索引"))
|
|
|
|
|
|
with gr.Row():
|
|
|
|
|
|
save_epoch10 = gr.Slider(
|
|
|
|
|
|
minimum=1,
|
|
|
|
|
|
maximum=50,
|
|
|
|
|
|
step=1,
|
|
|
|
|
|
label=i18n("保存频率save_every_epoch"),
|
|
|
|
|
|
value=5,
|
|
|
|
|
|
interactive=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
total_epoch11 = gr.Slider(
|
|
|
|
|
|
minimum=2,
|
|
|
|
|
|
maximum=1200,
|
|
|
|
|
|
step=1,
|
|
|
|
|
|
label=i18n("总训练轮数total_epoch"),
|
|
|
|
|
|
value=20,
|
|
|
|
|
|
interactive=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
batch_size12 = gr.Slider(
|
|
|
|
|
|
minimum=1,
|
|
|
|
|
|
maximum=40,
|
|
|
|
|
|
step=1,
|
|
|
|
|
|
label=i18n("每张显卡的batch_size"),
|
|
|
|
|
|
value=default_batch_size,
|
|
|
|
|
|
interactive=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
if_save_latest13 = gr.Radio(
|
|
|
|
|
|
label=i18n("是否仅保存最新的ckpt文件以节省硬盘空间"),
|
|
|
|
|
|
choices=[i18n("是"), i18n("否")],
|
|
|
|
|
|
value=i18n("否"),
|
|
|
|
|
|
interactive=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
if_cache_gpu17 = gr.Radio(
|
|
|
|
|
|
label=i18n(
|
|
|
|
|
|
"是否缓存所有训练集至显存. 10min以下小数据可缓存以加速训练, 大数据缓存会炸显存也加不了多少速"
|
|
|
|
|
|
),
|
|
|
|
|
|
choices=[i18n("是"), i18n("否")],
|
|
|
|
|
|
value=i18n("否"),
|
|
|
|
|
|
interactive=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
if_save_every_weights18 = gr.Radio(
|
|
|
|
|
|
label=i18n(
|
|
|
|
|
|
"是否在每次保存时间点将最终小模型保存至weights文件夹"
|
|
|
|
|
|
),
|
|
|
|
|
|
choices=[i18n("是"), i18n("否")],
|
|
|
|
|
|
value=i18n("否"),
|
|
|
|
|
|
interactive=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
with gr.Row():
|
|
|
|
|
|
pretrained_G14 = gr.Textbox(
|
|
|
|
|
|
label=i18n("加载预训练底模G路径"),
|
|
|
|
|
|
value="assets/pretrained_v2/f0G40k.pth",
|
|
|
|
|
|
interactive=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
pretrained_D15 = gr.Textbox(
|
|
|
|
|
|
label=i18n("加载预训练底模D路径"),
|
|
|
|
|
|
value="assets/pretrained_v2/f0D40k.pth",
|
|
|
|
|
|
interactive=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
sr2.change(
|
|
|
|
|
|
change_sr2,
|
|
|
|
|
|
[sr2, if_f0_3, version19],
|
|
|
|
|
|
[pretrained_G14, pretrained_D15],
|
|
|
|
|
|
)
|
|
|
|
|
|
version19.change(
|
|
|
|
|
|
change_version19,
|
|
|
|
|
|
[sr2, if_f0_3, version19],
|
|
|
|
|
|
[pretrained_G14, pretrained_D15, sr2],
|
|
|
|
|
|
)
|
|
|
|
|
|
if_f0_3.change(
|
|
|
|
|
|
change_f0,
|
|
|
|
|
|
[if_f0_3, sr2, version19],
|
|
|
|
|
|
[f0method8, gpus_rmvpe, pretrained_G14, pretrained_D15],
|
|
|
|
|
|
)
|
|
|
|
|
|
gpus16 = gr.Textbox(
|
|
|
|
|
|
label=i18n(
|
|
|
|
|
|
"以-分隔输入使用的卡号, 例如 0-1-2 使用卡0和卡1和卡2"
|
|
|
|
|
|
),
|
|
|
|
|
|
value=gpus,
|
|
|
|
|
|
interactive=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
but3 = gr.Button(i18n("训练模型"), variant="primary")
|
|
|
|
|
|
stop_but3 = gr.Button(
|
|
|
|
|
|
i18n("停止训练模型"), variant="stop", visible=False
|
|
|
|
|
|
)
|
|
|
|
|
|
but4 = gr.Button(i18n("训练特征索引"), variant="primary")
|
|
|
|
|
|
stop_but4 = gr.Button(
|
|
|
|
|
|
i18n("停止训练索引"), variant="stop", visible=False
|
|
|
|
|
|
)
|
|
|
|
|
|
but5 = gr.Button(i18n("一键训练"), variant="primary")
|
|
|
|
|
|
stop_but5 = gr.Button(
|
|
|
|
|
|
i18n("停止一键训练"), variant="stop", visible=False
|
|
|
|
|
|
)
|
2026-07-23 22:42:29 +08:00
|
|
|
|
info3 = gr.Textbox(
|
|
|
|
|
|
label=i18n("输出信息"),
|
|
|
|
|
|
value="",
|
|
|
|
|
|
lines=8,
|
|
|
|
|
|
max_lines=8,
|
|
|
|
|
|
elem_id="training-info-step3",
|
|
|
|
|
|
)
|
2026-07-19 21:17:17 +08:00
|
|
|
|
but3.click(
|
|
|
|
|
|
click_train,
|
|
|
|
|
|
[
|
|
|
|
|
|
exp_dir1,
|
|
|
|
|
|
sr2,
|
|
|
|
|
|
if_f0_3,
|
|
|
|
|
|
spk_id5,
|
|
|
|
|
|
save_epoch10,
|
|
|
|
|
|
total_epoch11,
|
|
|
|
|
|
batch_size12,
|
|
|
|
|
|
if_save_latest13,
|
|
|
|
|
|
pretrained_G14,
|
|
|
|
|
|
pretrained_D15,
|
|
|
|
|
|
gpus16,
|
|
|
|
|
|
if_cache_gpu17,
|
|
|
|
|
|
if_save_every_weights18,
|
|
|
|
|
|
version19,
|
2026-08-04 15:47:05 +08:00
|
|
|
|
training_mode,
|
2026-07-19 21:17:17 +08:00
|
|
|
|
],
|
|
|
|
|
|
[info3, but3, stop_but3, sid0],
|
|
|
|
|
|
api_name="train_start",
|
|
|
|
|
|
)
|
|
|
|
|
|
stop_but3.click(
|
|
|
|
|
|
stop_train_model,
|
|
|
|
|
|
[],
|
|
|
|
|
|
[info3, but3, stop_but3],
|
|
|
|
|
|
queue=False,
|
|
|
|
|
|
)
|
|
|
|
|
|
but4.click(
|
|
|
|
|
|
train_index,
|
2026-08-04 15:47:05 +08:00
|
|
|
|
[exp_dir1, version19, training_mode],
|
2026-07-19 21:17:17 +08:00
|
|
|
|
[info3, but4, stop_but4],
|
|
|
|
|
|
)
|
|
|
|
|
|
stop_but4.click(
|
|
|
|
|
|
stop_train_index,
|
|
|
|
|
|
[],
|
|
|
|
|
|
[info3, but4, stop_but4],
|
|
|
|
|
|
queue=False,
|
|
|
|
|
|
)
|
|
|
|
|
|
but5.click(
|
|
|
|
|
|
train1key,
|
|
|
|
|
|
[
|
|
|
|
|
|
exp_dir1,
|
|
|
|
|
|
sr2,
|
|
|
|
|
|
if_f0_3,
|
|
|
|
|
|
trainset_dir4,
|
|
|
|
|
|
spk_id5,
|
|
|
|
|
|
np7,
|
|
|
|
|
|
f0method8,
|
|
|
|
|
|
save_epoch10,
|
|
|
|
|
|
total_epoch11,
|
|
|
|
|
|
batch_size12,
|
|
|
|
|
|
if_save_latest13,
|
|
|
|
|
|
pretrained_G14,
|
|
|
|
|
|
pretrained_D15,
|
|
|
|
|
|
gpus16,
|
|
|
|
|
|
if_cache_gpu17,
|
|
|
|
|
|
if_save_every_weights18,
|
|
|
|
|
|
version19,
|
|
|
|
|
|
gpus_rmvpe,
|
2026-08-04 15:47:05 +08:00
|
|
|
|
training_mode,
|
2026-07-19 21:17:17 +08:00
|
|
|
|
],
|
|
|
|
|
|
[info3, but5, stop_but5, sid0],
|
|
|
|
|
|
api_name="train_start_all",
|
|
|
|
|
|
)
|
|
|
|
|
|
stop_but5.click(
|
|
|
|
|
|
stop_train1key,
|
|
|
|
|
|
[],
|
|
|
|
|
|
[info3, but5, stop_but5],
|
|
|
|
|
|
queue=False,
|
|
|
|
|
|
)
|
|
|
|
|
|
|
2026-08-04 15:47:05 +08:00
|
|
|
|
with gr.TabItem(i18n("多说话人训练集辅助")):
|
|
|
|
|
|
helper_rows_state = gr.State(empty_multispeaker_rows())
|
|
|
|
|
|
helper_row_count = gr.State(2)
|
|
|
|
|
|
helper_page = gr.State(0)
|
|
|
|
|
|
gr.Markdown(
|
|
|
|
|
|
value=i18n(
|
|
|
|
|
|
"为多说话人训练集建立清单。空行会被忽略;路径、说话人名称、说话人ID或重复次数填写不全的行会在提交时提示。"
|
|
|
|
|
|
)
|
|
|
|
|
|
)
|
|
|
|
|
|
with gr.Row():
|
|
|
|
|
|
helper_exp_name = gr.Textbox(
|
|
|
|
|
|
label=i18n("输入实验名,例如:test")
|
|
|
|
|
|
)
|
|
|
|
|
|
helper_submit = gr.Button(i18n("提交训练集清单"), variant="primary")
|
|
|
|
|
|
helper_previous = gr.Button(i18n("上一页"))
|
|
|
|
|
|
helper_page_label = gr.Markdown(
|
|
|
|
|
|
value=i18n("第%s/%s页,共%s行") % (1, 1, 2)
|
|
|
|
|
|
)
|
|
|
|
|
|
helper_next = gr.Button(i18n("下一页"))
|
|
|
|
|
|
with gr.Row():
|
|
|
|
|
|
helper_add = gr.Button(i18n("新增一行"))
|
|
|
|
|
|
helper_remove = gr.Button(i18n("删除末行"))
|
|
|
|
|
|
helper_row_outputs = []
|
|
|
|
|
|
helper_row_values = []
|
|
|
|
|
|
for helper_slot in range(MULTISPEAKER_PAGE_SIZE):
|
|
|
|
|
|
with gr.Row():
|
|
|
|
|
|
helper_path = gr.Textbox(
|
|
|
|
|
|
label=i18n("训练集子音频文件夹目录路径"),
|
|
|
|
|
|
value="",
|
|
|
|
|
|
visible=helper_slot < 2,
|
|
|
|
|
|
)
|
|
|
|
|
|
helper_speaker_name = gr.Textbox(
|
|
|
|
|
|
label=i18n("说话人名称"),
|
|
|
|
|
|
value="",
|
|
|
|
|
|
visible=helper_slot < 2,
|
|
|
|
|
|
)
|
|
|
|
|
|
helper_speaker_id = gr.Number(
|
|
|
|
|
|
label=i18n("说话人ID(0~109)"),
|
|
|
|
|
|
value=helper_slot if helper_slot < 2 else None,
|
|
|
|
|
|
precision=0,
|
|
|
|
|
|
visible=helper_slot < 2,
|
|
|
|
|
|
)
|
|
|
|
|
|
helper_repeat = gr.Number(
|
|
|
|
|
|
label=i18n("重复次数"),
|
|
|
|
|
|
value=1 if helper_slot < 2 else None,
|
|
|
|
|
|
precision=0,
|
|
|
|
|
|
visible=helper_slot < 2,
|
|
|
|
|
|
)
|
|
|
|
|
|
helper_row_outputs.extend(
|
|
|
|
|
|
[
|
|
|
|
|
|
helper_path,
|
|
|
|
|
|
helper_speaker_name,
|
|
|
|
|
|
helper_speaker_id,
|
|
|
|
|
|
helper_repeat,
|
|
|
|
|
|
]
|
|
|
|
|
|
)
|
|
|
|
|
|
helper_row_values.extend(
|
|
|
|
|
|
[helper_path, helper_speaker_name, helper_speaker_id, helper_repeat]
|
|
|
|
|
|
)
|
|
|
|
|
|
helper_status = gr.HTML(value="")
|
|
|
|
|
|
helper_event_inputs = [
|
|
|
|
|
|
helper_rows_state,
|
|
|
|
|
|
helper_row_count,
|
|
|
|
|
|
helper_page,
|
|
|
|
|
|
] + helper_row_values
|
|
|
|
|
|
helper_event_outputs = [
|
|
|
|
|
|
helper_rows_state,
|
|
|
|
|
|
helper_row_count,
|
|
|
|
|
|
helper_page,
|
|
|
|
|
|
helper_page_label,
|
|
|
|
|
|
] + helper_row_outputs
|
|
|
|
|
|
helper_add.click(
|
|
|
|
|
|
add_multispeaker_row,
|
|
|
|
|
|
helper_event_inputs,
|
|
|
|
|
|
helper_event_outputs,
|
|
|
|
|
|
queue=False,
|
|
|
|
|
|
)
|
|
|
|
|
|
helper_remove.click(
|
|
|
|
|
|
remove_multispeaker_row,
|
|
|
|
|
|
helper_event_inputs,
|
|
|
|
|
|
helper_event_outputs,
|
|
|
|
|
|
queue=False,
|
|
|
|
|
|
)
|
|
|
|
|
|
helper_previous.click(
|
|
|
|
|
|
previous_multispeaker_page,
|
|
|
|
|
|
helper_event_inputs,
|
|
|
|
|
|
helper_event_outputs,
|
|
|
|
|
|
queue=False,
|
|
|
|
|
|
)
|
|
|
|
|
|
helper_next.click(
|
|
|
|
|
|
next_multispeaker_page,
|
|
|
|
|
|
helper_event_inputs,
|
|
|
|
|
|
helper_event_outputs,
|
|
|
|
|
|
queue=False,
|
|
|
|
|
|
)
|
|
|
|
|
|
helper_submit.click(
|
|
|
|
|
|
submit_multispeaker_rows,
|
|
|
|
|
|
[helper_exp_name] + helper_event_inputs,
|
|
|
|
|
|
[helper_rows_state, helper_status],
|
|
|
|
|
|
api_name="multispeaker_manifest_submit",
|
|
|
|
|
|
)
|
|
|
|
|
|
exp_dir1.change(
|
|
|
|
|
|
sync_exp_name,
|
|
|
|
|
|
[exp_dir1, helper_exp_name],
|
|
|
|
|
|
[helper_exp_name],
|
|
|
|
|
|
queue=False,
|
|
|
|
|
|
)
|
|
|
|
|
|
helper_exp_name.change(
|
|
|
|
|
|
sync_exp_name,
|
|
|
|
|
|
[helper_exp_name, exp_dir1],
|
|
|
|
|
|
[exp_dir1],
|
|
|
|
|
|
queue=False,
|
|
|
|
|
|
)
|
|
|
|
|
|
|
2026-07-19 21:17:17 +08:00
|
|
|
|
with gr.TabItem(i18n("ckpt处理")):
|
|
|
|
|
|
with gr.Group():
|
|
|
|
|
|
gr.Markdown(value=i18n("模型融合, 可用于测试音色融合"))
|
|
|
|
|
|
with gr.Row():
|
|
|
|
|
|
ckpt_a = gr.Textbox(
|
|
|
|
|
|
label=i18n("A模型路径"), value="", interactive=True
|
|
|
|
|
|
)
|
|
|
|
|
|
ckpt_b = gr.Textbox(
|
|
|
|
|
|
label=i18n("B模型路径"), value="", interactive=True
|
|
|
|
|
|
)
|
|
|
|
|
|
alpha_a = gr.Slider(
|
|
|
|
|
|
minimum=0,
|
|
|
|
|
|
maximum=1,
|
|
|
|
|
|
label=i18n("A模型权重"),
|
|
|
|
|
|
value=0.5,
|
|
|
|
|
|
interactive=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
with gr.Row():
|
|
|
|
|
|
sr_ = gr.Radio(
|
|
|
|
|
|
label=i18n("目标采样率"),
|
|
|
|
|
|
choices=["40k", "48k"],
|
|
|
|
|
|
value="40k",
|
|
|
|
|
|
interactive=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
if_f0_ = gr.Radio(
|
|
|
|
|
|
label=i18n("模型是否带音高指导"),
|
|
|
|
|
|
choices=[i18n("是"), i18n("否")],
|
|
|
|
|
|
value=i18n("是"),
|
|
|
|
|
|
interactive=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
info__ = gr.Textbox(
|
|
|
|
|
|
label=i18n("要置入的模型信息"),
|
|
|
|
|
|
value="",
|
|
|
|
|
|
max_lines=8,
|
|
|
|
|
|
interactive=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
name_to_save0 = gr.Textbox(
|
|
|
|
|
|
label=i18n("保存的模型名不带后缀"),
|
|
|
|
|
|
value="",
|
|
|
|
|
|
max_lines=1,
|
|
|
|
|
|
interactive=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
version_2 = gr.Radio(
|
|
|
|
|
|
label=i18n("模型版本型号"),
|
|
|
|
|
|
choices=["v1", "v2"],
|
|
|
|
|
|
value="v1",
|
|
|
|
|
|
interactive=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
with gr.Row():
|
|
|
|
|
|
but6 = gr.Button(i18n("融合"), variant="primary")
|
|
|
|
|
|
info4 = gr.Textbox(label=i18n("输出信息"), value="", max_lines=8)
|
|
|
|
|
|
but6.click(
|
|
|
|
|
|
merge,
|
|
|
|
|
|
[
|
|
|
|
|
|
ckpt_a,
|
|
|
|
|
|
ckpt_b,
|
|
|
|
|
|
alpha_a,
|
|
|
|
|
|
sr_,
|
|
|
|
|
|
if_f0_,
|
|
|
|
|
|
info__,
|
|
|
|
|
|
name_to_save0,
|
|
|
|
|
|
version_2,
|
|
|
|
|
|
],
|
|
|
|
|
|
info4,
|
|
|
|
|
|
api_name="ckpt_merge",
|
|
|
|
|
|
) # def merge(path1,path2,alpha1,sr,f0,info):
|
|
|
|
|
|
with gr.Group():
|
|
|
|
|
|
gr.Markdown(
|
|
|
|
|
|
value=i18n("修改模型信息(仅支持weights文件夹下提取的小模型文件)")
|
|
|
|
|
|
)
|
|
|
|
|
|
with gr.Row():
|
|
|
|
|
|
ckpt_path0 = gr.Textbox(
|
|
|
|
|
|
label=i18n("模型路径"), value="", interactive=True
|
|
|
|
|
|
)
|
|
|
|
|
|
info_ = gr.Textbox(
|
|
|
|
|
|
label=i18n("要改的模型信息"),
|
|
|
|
|
|
value="",
|
|
|
|
|
|
max_lines=8,
|
|
|
|
|
|
interactive=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
name_to_save1 = gr.Textbox(
|
|
|
|
|
|
label=i18n("保存的文件名, 默认空为和源文件同名"),
|
|
|
|
|
|
value="",
|
|
|
|
|
|
max_lines=8,
|
|
|
|
|
|
interactive=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
with gr.Row():
|
|
|
|
|
|
but7 = gr.Button(i18n("修改"), variant="primary")
|
|
|
|
|
|
info5 = gr.Textbox(label=i18n("输出信息"), value="", max_lines=8)
|
|
|
|
|
|
but7.click(
|
|
|
|
|
|
change_info,
|
|
|
|
|
|
[ckpt_path0, info_, name_to_save1],
|
|
|
|
|
|
info5,
|
|
|
|
|
|
api_name="ckpt_modify",
|
|
|
|
|
|
)
|
|
|
|
|
|
with gr.Group():
|
|
|
|
|
|
gr.Markdown(
|
|
|
|
|
|
value=i18n("查看模型信息(仅支持weights文件夹下提取的小模型文件)")
|
|
|
|
|
|
)
|
|
|
|
|
|
with gr.Row():
|
|
|
|
|
|
ckpt_path1 = gr.Textbox(
|
|
|
|
|
|
label=i18n("模型路径"), value="", interactive=True
|
|
|
|
|
|
)
|
|
|
|
|
|
but8 = gr.Button(i18n("查看"), variant="primary")
|
|
|
|
|
|
info6 = gr.Textbox(label=i18n("输出信息"), value="", max_lines=8)
|
|
|
|
|
|
but8.click(show_info, [ckpt_path1], info6, api_name="ckpt_show")
|
|
|
|
|
|
with gr.Group():
|
|
|
|
|
|
gr.Markdown(
|
|
|
|
|
|
value=i18n(
|
|
|
|
|
|
"模型提取(输入logs文件夹下大文件模型路径),适用于训一半不想训了模型没有自动提取保存小文件模型,或者想测试中间模型的情况"
|
|
|
|
|
|
)
|
|
|
|
|
|
)
|
|
|
|
|
|
with gr.Row():
|
|
|
|
|
|
ckpt_path2 = gr.Textbox(
|
|
|
|
|
|
label=i18n("模型路径"),
|
|
|
|
|
|
value="E:\\codes\\py39\\logs\\mi-test_f0_48k\\G_23333.pth",
|
|
|
|
|
|
interactive=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
save_name = gr.Textbox(
|
|
|
|
|
|
label=i18n("保存名"), value="", interactive=True
|
|
|
|
|
|
)
|
|
|
|
|
|
sr__ = gr.Radio(
|
|
|
|
|
|
label=i18n("目标采样率"),
|
|
|
|
|
|
choices=["32k", "40k", "48k"],
|
|
|
|
|
|
value="40k",
|
|
|
|
|
|
interactive=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
if_f0__ = gr.Radio(
|
|
|
|
|
|
label=i18n("模型是否带音高指导,1是0否"),
|
|
|
|
|
|
choices=["1", "0"],
|
|
|
|
|
|
value="1",
|
|
|
|
|
|
interactive=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
version_1 = gr.Radio(
|
|
|
|
|
|
label=i18n("模型版本型号"),
|
|
|
|
|
|
choices=["v1", "v2"],
|
|
|
|
|
|
value="v2",
|
|
|
|
|
|
interactive=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
info___ = gr.Textbox(
|
|
|
|
|
|
label=i18n("要置入的模型信息"),
|
|
|
|
|
|
value="",
|
|
|
|
|
|
max_lines=8,
|
|
|
|
|
|
interactive=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
but9 = gr.Button(i18n("提取"), variant="primary")
|
|
|
|
|
|
info7 = gr.Textbox(label=i18n("输出信息"), value="", max_lines=8)
|
|
|
|
|
|
ckpt_path2.change(
|
|
|
|
|
|
change_info_, [ckpt_path2], [sr__, if_f0__, version_1]
|
|
|
|
|
|
)
|
|
|
|
|
|
but9.click(
|
|
|
|
|
|
extract_small_model,
|
|
|
|
|
|
[ckpt_path2, save_name, sr__, if_f0__, info___, version_1],
|
|
|
|
|
|
info7,
|
|
|
|
|
|
api_name="ckpt_extract",
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
tab_faq = i18n("常见问题解答")
|
|
|
|
|
|
with gr.TabItem(tab_faq):
|
|
|
|
|
|
try:
|
|
|
|
|
|
if tab_faq == "常见问题解答":
|
|
|
|
|
|
info = read_text("docs/cn/faq.md")
|
|
|
|
|
|
else:
|
|
|
|
|
|
info = read_text("docs/en/faq_en.md")
|
|
|
|
|
|
gr.Markdown(value=info)
|
|
|
|
|
|
except Exception:
|
|
|
|
|
|
gr.Markdown(traceback.format_exc())
|
|
|
|
|
|
|
|
|
|
|
|
if config.iscolab:
|
|
|
|
|
|
app.queue(concurrency_count=511, max_size=1022).launch(share=True)
|
|
|
|
|
|
else:
|
|
|
|
|
|
launch_webui_with_port_fallback(app, config)
|