1
0
mirror of https://github.com/fumiama/Retrieval-based-Voice-Conversion-WebUI.git synced 2026-06-07 19:40:44 +08:00

chore(format): run black on dev (#23)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2024-06-10 21:38:19 +09:00
committed by GitHub
parent e33ef19200
commit fe7a2bf41a
3 changed files with 27 additions and 18 deletions

View File

@@ -428,15 +428,19 @@ class RVC:
# return_length2 = torch.LongTensor([return_length2])
return_length = torch.LongTensor([return_length])
with torch.no_grad():
infered_audio = self.net_g.infer(
feats,
p_len,
sid,
pitch=cache_pitch,
pitchf=cache_pitchf,
skip_head=skip_head,
return_length=return_length,
).squeeze(1).float()
infered_audio = (
self.net_g.infer(
feats,
p_len,
sid,
pitch=cache_pitch,
pitchf=cache_pitchf,
skip_head=skip_head,
return_length=return_length,
)
.squeeze(1)
.float()
)
upp_res = int(np.floor(factor * self.tgt_sr // 100))
if upp_res != self.tgt_sr // 100:
if upp_res not in self.resample_kernel: