mirror of
https://github.com/RVC-Boss/GPT-SoVITS.git
synced 2025-04-05 19:41:56 +08:00
更改fast_langdetect为可配置项,可在config.py中设置是否使用自定义识别器 [吐槽一下怎么做测试的文本是go批啊(喜)]
This commit is contained in:
parent
86f7a7d985
commit
46d993ed04
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user