From 46d993ed04e56f11d924280468065a4f1d65be41 Mon Sep 17 00:00:00 2001 From: Intro Date: Thu, 13 Mar 2025 05:07:06 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=94=B9fast=5Flangdetect=E4=B8=BA?= =?UTF-8?q?=E5=8F=AF=E9=85=8D=E7=BD=AE=E9=A1=B9=EF=BC=8C=E5=8F=AF=E5=9C=A8?= =?UTF-8?q?config.py=E4=B8=AD=E8=AE=BE=E7=BD=AE=E6=98=AF=E5=90=A6=E4=BD=BF?= =?UTF-8?q?=E7=94=A8=E8=87=AA=E5=AE=9A=E4=B9=89=E8=AF=86=E5=88=AB=E5=99=A8?= =?UTF-8?q?=20[=E5=90=90=E6=A7=BD=E4=B8=80=E4=B8=8B=E6=80=8E=E4=B9=88?= =?UTF-8?q?=E5=81=9A=E6=B5=8B=E8=AF=95=E7=9A=84=E6=96=87=E6=9C=AC=E6=98=AF?= =?UTF-8?q?go=E6=89=B9=E5=95=8A(=E5=96=9C)]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- GPT_SoVITS/text/LangSegmenter/langsegmenter.py | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/GPT_SoVITS/text/LangSegmenter/langsegmenter.py b/GPT_SoVITS/text/LangSegmenter/langsegmenter.py index c558348..c82de2e 100644 --- a/GPT_SoVITS/text/LangSegmenter/langsegmenter.py +++ b/GPT_SoVITS/text/LangSegmenter/langsegmenter.py @@ -1,14 +1,22 @@ import logging import re +from pathlib import Path + # jieba静音 import jieba jieba.setLogLevel(logging.CRITICAL) -# 更改fast_langdetect大模型位置 -from pathlib import Path +# 加载配置 +import sys +sys.path.append("..") +from config import Config +config = Config() + import fast_langdetect -fast_langdetect.infer._default_detector = fast_langdetect.infer.LangDetector(fast_langdetect.infer.LangDetectConfig(cache_dir=Path(__file__).parent.parent.parent / "pretrained_models" / "fast_langdetect")) +# 更改fast_langdetect大模型位置 +if config.enable_costum_langdetect: + fast_langdetect.infer._default_detector = fast_langdetect.infer.LangDetector(fast_langdetect.infer.LangDetectConfig(cache_dir=Path(__file__).parent.parent.parent / "pretrained_models" / "fast_langdetect")) from split_lang import LangSplitter