From fa1735b373bdf6df85c44f9f25fb6b443bcd2db1 Mon Sep 17 00:00:00 2001 From: Cohee <18619528+Cohee1207@users.noreply.github.com> Date: Sun, 13 Aug 2023 17:40:21 +0300 Subject: [PATCH] Translate console logs --- modules/voice_conversion/rvc/rvc.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/voice_conversion/rvc/rvc.py b/modules/voice_conversion/rvc/rvc.py index c4cbb31..ac5d5ed 100644 --- a/modules/voice_conversion/rvc/rvc.py +++ b/modules/voice_conversion/rvc/rvc.py @@ -66,7 +66,7 @@ class Config: or "1070" in self.gpu_name or "1080" in self.gpu_name ): - print("16系/10系显卡和P40强制单精度") + print("Forcing full precision for 16/10 series cards.") self.is_half = False config_file_change_fp32() else: @@ -84,12 +84,12 @@ class Config: # with open("trainset_preprocess_pipeline_print.py", "w") as f: # f.write(strr) elif torch.backends.mps.is_available(): - print("没有发现支持的N卡, 使用MPS进行推理") + print("No compatible GPU found, using MPS for inference.") self.device = "mps" self.is_half = False config_file_change_fp32() else: - print("没有发现支持的N卡, 使用CPU进行推理") + print("No compatible GPU found, using CPU for inference.") self.device = "cpu" self.is_half = False config_file_change_fp32()