chore(format): run black on dev (#1717)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
bb4d185a57
commit
4f7b6b2b9e
@ -158,7 +158,8 @@ class Config:
|
|||||||
/ 1024
|
/ 1024
|
||||||
+ 0.4
|
+ 0.4
|
||||||
)
|
)
|
||||||
if self.gpu_mem <= 4: self.preprocess_per = 3.0
|
if self.gpu_mem <= 4:
|
||||||
|
self.preprocess_per = 3.0
|
||||||
elif self.has_mps():
|
elif self.has_mps():
|
||||||
logger.info("No supported Nvidia GPU found")
|
logger.info("No supported Nvidia GPU found")
|
||||||
self.device = self.instead = "mps"
|
self.device = self.instead = "mps"
|
||||||
@ -241,5 +242,8 @@ class Config:
|
|||||||
)
|
)
|
||||||
except:
|
except:
|
||||||
pass
|
pass
|
||||||
logger.info("Half-precision floating-point: %s, device: %s" % (self.is_half, self.device))
|
logger.info(
|
||||||
|
"Half-precision floating-point: %s, device: %s"
|
||||||
|
% (self.is_half, self.device)
|
||||||
|
)
|
||||||
return x_pad, x_query, x_center, x_max
|
return x_pad, x_query, x_center, x_max
|
||||||
|
12
infer-web.py
12
infer-web.py
@ -217,7 +217,7 @@ def preprocess_dataset(trainset_dir, exp_dir, sr, n_p):
|
|||||||
config.noparallel,
|
config.noparallel,
|
||||||
config.preprocess_per,
|
config.preprocess_per,
|
||||||
)
|
)
|
||||||
logger.info("Execute: "+cmd)
|
logger.info("Execute: " + cmd)
|
||||||
# , stdin=PIPE, stdout=PIPE,stderr=PIPE,cwd=now_dir
|
# , stdin=PIPE, stdout=PIPE,stderr=PIPE,cwd=now_dir
|
||||||
p = Popen(cmd, shell=True)
|
p = Popen(cmd, shell=True)
|
||||||
# 煞笔gr, popen read都非得全跑完了再一次性读取, 不用gr就正常读一句输出一句;只能额外弄出一个文本流定时读
|
# 煞笔gr, popen read都非得全跑完了再一次性读取, 不用gr就正常读一句输出一句;只能额外弄出一个文本流定时读
|
||||||
@ -259,7 +259,7 @@ def extract_f0_feature(gpus, n_p, f0method, if_f0, exp_dir, version19, gpus_rmvp
|
|||||||
f0method,
|
f0method,
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
logger.info("Execute: "+cmd)
|
logger.info("Execute: " + cmd)
|
||||||
p = Popen(
|
p = Popen(
|
||||||
cmd, shell=True, cwd=now_dir
|
cmd, shell=True, cwd=now_dir
|
||||||
) # , stdin=PIPE, stdout=PIPE,stderr=PIPE
|
) # , stdin=PIPE, stdout=PIPE,stderr=PIPE
|
||||||
@ -290,7 +290,7 @@ def extract_f0_feature(gpus, n_p, f0method, if_f0, exp_dir, version19, gpus_rmvp
|
|||||||
config.is_half,
|
config.is_half,
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
logger.info("Execute: "+cmd)
|
logger.info("Execute: " + cmd)
|
||||||
p = Popen(
|
p = Popen(
|
||||||
cmd, shell=True, cwd=now_dir
|
cmd, shell=True, cwd=now_dir
|
||||||
) # , shell=True, stdin=PIPE, stdout=PIPE, stderr=PIPE, cwd=now_dir
|
) # , shell=True, stdin=PIPE, stdout=PIPE, stderr=PIPE, cwd=now_dir
|
||||||
@ -313,7 +313,7 @@ def extract_f0_feature(gpus, n_p, f0method, if_f0, exp_dir, version19, gpus_rmvp
|
|||||||
exp_dir,
|
exp_dir,
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
logger.info("Execute: "+cmd)
|
logger.info("Execute: " + cmd)
|
||||||
p = Popen(
|
p = Popen(
|
||||||
cmd, shell=True, cwd=now_dir
|
cmd, shell=True, cwd=now_dir
|
||||||
) # , shell=True, stdin=PIPE, stdout=PIPE, stderr=PIPE, cwd=now_dir
|
) # , shell=True, stdin=PIPE, stdout=PIPE, stderr=PIPE, cwd=now_dir
|
||||||
@ -356,7 +356,7 @@ def extract_f0_feature(gpus, n_p, f0method, if_f0, exp_dir, version19, gpus_rmvp
|
|||||||
config.is_half,
|
config.is_half,
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
logger.info("Execute: "+cmd)
|
logger.info("Execute: " + cmd)
|
||||||
p = Popen(
|
p = Popen(
|
||||||
cmd, shell=True, cwd=now_dir
|
cmd, shell=True, cwd=now_dir
|
||||||
) # , shell=True, stdin=PIPE, stdout=PIPE, stderr=PIPE, cwd=now_dir
|
) # , shell=True, stdin=PIPE, stdout=PIPE, stderr=PIPE, cwd=now_dir
|
||||||
@ -589,7 +589,7 @@ def click_train(
|
|||||||
version19,
|
version19,
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
logger.info("Execute: "+cmd)
|
logger.info("Execute: " + cmd)
|
||||||
p = Popen(cmd, shell=True, cwd=now_dir)
|
p = Popen(cmd, shell=True, cwd=now_dir)
|
||||||
p.wait()
|
p.wait()
|
||||||
return "训练结束, 您可查看控制台训练日志或实验文件夹下的train.log"
|
return "训练结束, 您可查看控制台训练日志或实验文件夹下的train.log"
|
||||||
|
@ -31,6 +31,7 @@ def println(strr):
|
|||||||
f.write("%s\n" % strr)
|
f.write("%s\n" % strr)
|
||||||
f.flush()
|
f.flush()
|
||||||
|
|
||||||
|
|
||||||
class PreProcess:
|
class PreProcess:
|
||||||
def __init__(self, sr, exp_dir, per=3.7):
|
def __init__(self, sr, exp_dir, per=3.7):
|
||||||
self.slicer = Slicer(
|
self.slicer = Slicer(
|
||||||
|
Loading…
Reference in New Issue
Block a user