* Step 2a fix by quoting config.python_cmd (#1030) - Ensure `config.python_cmd` is properly quoted when constructing command strings. - Address issue where paths with spaces (e.g., "C:\Program Files\...") caused command execution failure on Windows during training. - This is a fix for step 2a of training. * Step 2b rmvpe_gpu fix by quoting config.python_cmd (#1030) - Ensure `config.python_cmd` is properly quoted when constructing command strings. - Address issue where paths with spaces (e.g., "C:\Program Files\...") caused command execution failure on Windows during training. - This is a fix for step 2b of training (rmvpe_gpu) mode specifically. * Step 2b pm fix by quoting config.python_cmd (#1030) - Quoted `config.python_cmd` to ensure proper command string construction. - Resolved an issue where paths with spaces, like "C:\Program Files\...", caused execution failures on Windows during training. - While this fix targets Step 2b of training (pm mode), it might also address issues in other modes (harvest, dio, rmvpe). I've only verified the fix post-change for these modes. * Step 3 Train model fix by quoting config.python_cmd (#1030) - Ensure `config.python_cmd` is properly quoted when constructing command strings. - Address issue where paths with spaces (e.g., "C:\Program Files\...") caused command execution failure on Windows during training. - This is a fix for step 3 of training: (Train model) button specifically. Train feature index seems to be working correctly, I have only verified this post-fix. I've not yet tested the "One-click training" button. * Quote config.python_cmd for Step 3 One-click training (#1030) - Addressed an issue where paths with spaces (e.g., "C:\Program Files\...") caused command execution failures on Windows during training. - Specifically, ensured `config.python_cmd` is properly quoted when constructing command strings for step 3 of training (One-click training button). Notes: - All remaining instances of unquoted `config.python_cmd` in `infer-web.py` seem to be piped into a command shell. These might exhibit similar issues when executed. - It might be simpler to replace `config.python_cmd` itself with its quoted version, unless there are instances where it's used differently. - This likely resolves the issue for the `Train` tab, but further review is advised.
This commit is contained in:
parent
b0675d2053
commit
ef738704d0
20
infer-web.py
20
infer-web.py
@ -571,6 +571,8 @@ def if_done_multi(done, ps):
|
|||||||
break
|
break
|
||||||
done[0] = True
|
done[0] = True
|
||||||
|
|
||||||
|
def get_quoted_python_cmd():
|
||||||
|
return f'"{config.python_cmd}"'
|
||||||
|
|
||||||
def preprocess_dataset(trainset_dir, exp_dir, sr, n_p):
|
def preprocess_dataset(trainset_dir, exp_dir, sr, n_p):
|
||||||
sr = sr_dict[sr]
|
sr = sr_dict[sr]
|
||||||
@ -578,7 +580,7 @@ def preprocess_dataset(trainset_dir, exp_dir, sr, n_p):
|
|||||||
f = open("%s/logs/%s/preprocess.log" % (now_dir, exp_dir), "w")
|
f = open("%s/logs/%s/preprocess.log" % (now_dir, exp_dir), "w")
|
||||||
f.close()
|
f.close()
|
||||||
cmd = (
|
cmd = (
|
||||||
config.python_cmd
|
get_quoted_python_cmd()
|
||||||
+ ' trainset_preprocess_pipeline_print.py "%s" %s %s "%s/logs/%s" '
|
+ ' trainset_preprocess_pipeline_print.py "%s" %s %s "%s/logs/%s" '
|
||||||
% (trainset_dir, sr, n_p, now_dir, exp_dir)
|
% (trainset_dir, sr, n_p, now_dir, exp_dir)
|
||||||
+ str(config.noparallel)
|
+ str(config.noparallel)
|
||||||
@ -614,7 +616,7 @@ def extract_f0_feature(gpus, n_p, f0method, if_f0, exp_dir, version19, gpus_rmvp
|
|||||||
f.close()
|
f.close()
|
||||||
if if_f0:
|
if if_f0:
|
||||||
if f0method != "rmvpe_gpu":
|
if f0method != "rmvpe_gpu":
|
||||||
cmd = config.python_cmd + ' extract_f0_print.py "%s/logs/%s" %s %s' % (
|
cmd = get_quoted_python_cmd() + ' extract_f0_print.py "%s/logs/%s" %s %s' % (
|
||||||
now_dir,
|
now_dir,
|
||||||
exp_dir,
|
exp_dir,
|
||||||
n_p,
|
n_p,
|
||||||
@ -640,7 +642,7 @@ def extract_f0_feature(gpus, n_p, f0method, if_f0, exp_dir, version19, gpus_rmvp
|
|||||||
ps = []
|
ps = []
|
||||||
for idx, n_g in enumerate(gpus_rmvpe):
|
for idx, n_g in enumerate(gpus_rmvpe):
|
||||||
cmd = (
|
cmd = (
|
||||||
config.python_cmd
|
get_quoted_python_cmd()
|
||||||
+ ' extract_f0_rmvpe.py %s %s %s "%s/logs/%s" %s '
|
+ ' extract_f0_rmvpe.py %s %s %s "%s/logs/%s" %s '
|
||||||
% (leng, idx, n_g, now_dir, exp_dir, config.is_half)
|
% (leng, idx, n_g, now_dir, exp_dir, config.is_half)
|
||||||
)
|
)
|
||||||
@ -693,7 +695,7 @@ def extract_f0_feature(gpus, n_p, f0method, if_f0, exp_dir, version19, gpus_rmvp
|
|||||||
ps = []
|
ps = []
|
||||||
for idx, n_g in enumerate(gpus):
|
for idx, n_g in enumerate(gpus):
|
||||||
cmd = (
|
cmd = (
|
||||||
config.python_cmd
|
get_quoted_python_cmd()
|
||||||
+ ' extract_feature_print.py %s %s %s %s "%s/logs/%s" %s'
|
+ ' extract_feature_print.py %s %s %s %s "%s/logs/%s" %s'
|
||||||
% (
|
% (
|
||||||
config.device,
|
config.device,
|
||||||
@ -929,7 +931,7 @@ def click_train(
|
|||||||
print("no pretrained Discriminator")
|
print("no pretrained Discriminator")
|
||||||
if gpus16:
|
if gpus16:
|
||||||
cmd = (
|
cmd = (
|
||||||
config.python_cmd
|
get_quoted_python_cmd()
|
||||||
+ ' train_nsf_sim_cache_sid_load_pretrain.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'
|
+ ' train_nsf_sim_cache_sid_load_pretrain.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'
|
||||||
% (
|
% (
|
||||||
exp_dir1,
|
exp_dir1,
|
||||||
@ -1094,7 +1096,7 @@ def train1key(
|
|||||||
#########step1:处理数据
|
#########step1:处理数据
|
||||||
open(preprocess_log_path, "w").close()
|
open(preprocess_log_path, "w").close()
|
||||||
cmd = (
|
cmd = (
|
||||||
config.python_cmd
|
get_quoted_python_cmd()
|
||||||
+ ' trainset_preprocess_pipeline_print.py "%s" %s %s "%s" '
|
+ ' trainset_preprocess_pipeline_print.py "%s" %s %s "%s" '
|
||||||
% (trainset_dir4, sr_dict[sr2], np7, model_log_dir)
|
% (trainset_dir4, sr_dict[sr2], np7, model_log_dir)
|
||||||
+ str(config.noparallel)
|
+ str(config.noparallel)
|
||||||
@ -1125,7 +1127,7 @@ def train1key(
|
|||||||
ps = []
|
ps = []
|
||||||
for idx, n_g in enumerate(gpus_rmvpe):
|
for idx, n_g in enumerate(gpus_rmvpe):
|
||||||
cmd = (
|
cmd = (
|
||||||
config.python_cmd
|
get_quoted_python_cmd()
|
||||||
+ ' extract_f0_rmvpe.py %s %s %s "%s" %s '
|
+ ' extract_f0_rmvpe.py %s %s %s "%s" %s '
|
||||||
% (
|
% (
|
||||||
leng,
|
leng,
|
||||||
@ -1161,7 +1163,7 @@ def train1key(
|
|||||||
leng = len(gpus)
|
leng = len(gpus)
|
||||||
ps = []
|
ps = []
|
||||||
for idx, n_g in enumerate(gpus):
|
for idx, n_g in enumerate(gpus):
|
||||||
cmd = config.python_cmd + ' extract_feature_print.py %s %s %s %s "%s" %s' % (
|
cmd = get_quoted_python_cmd() + ' extract_feature_print.py %s %s %s %s "%s" %s' % (
|
||||||
config.device,
|
config.device,
|
||||||
leng,
|
leng,
|
||||||
idx,
|
idx,
|
||||||
@ -1241,7 +1243,7 @@ def train1key(
|
|||||||
yield get_info_str("write filelist done")
|
yield get_info_str("write filelist done")
|
||||||
if gpus16:
|
if gpus16:
|
||||||
cmd = (
|
cmd = (
|
||||||
config.python_cmd
|
get_quoted_python_cmd()
|
||||||
+ ' train_nsf_sim_cache_sid_load_pretrain.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'
|
+ ' train_nsf_sim_cache_sid_load_pretrain.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'
|
||||||
% (
|
% (
|
||||||
exp_dir1,
|
exp_dir1,
|
||||||
|
Loading…
Reference in New Issue
Block a user