Skip to content

Commit

Permalink
fix(inference): fix typo in core.py (#738)
Browse files Browse the repository at this point in the history
  • Loading branch information
crexlight authored Jun 14, 2023
1 parent 6fb371d commit 6a87d32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/so_vits_svc_fork/inference/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ def infer(
)[0, 0].data.float()
audio_duration = audio.shape[-1] / self.target_sample
LOG.info(
f"Inferece time: {t.elapsed:.2f}s, RTF: {t.elapsed / audio_duration:.2f}"
f"Inference time: {t.elapsed:.2f}s, RTF: {t.elapsed / audio_duration:.2f}"
)
torch.cuda.empty_cache()
return audio, audio.shape[-1]
Expand Down

0 comments on commit 6a87d32

Please sign in to comment.