mirror of
https://github.com/RVC-Boss/GPT-SoVITS.git
synced 2025-04-06 03:57:44 +08:00
更改fast_langdetect为可配置项,可在config.py中设置是否使用自定义识别器 [吐槽一下怎么做测试的文本是go批啊(喜)]
This commit is contained in:
parent
86f7a7d985
commit
46d993ed04
@ -1,14 +1,22 @@
|
|||||||
import logging
|
import logging
|
||||||
import re
|
import re
|
||||||
|
|
||||||
|
from pathlib import Path
|
||||||
|
|
||||||
# jieba静音
|
# jieba静音
|
||||||
import jieba
|
import jieba
|
||||||
jieba.setLogLevel(logging.CRITICAL)
|
jieba.setLogLevel(logging.CRITICAL)
|
||||||
|
|
||||||
# 更改fast_langdetect大模型位置
|
# 加载配置
|
||||||
from pathlib import Path
|
import sys
|
||||||
|
sys.path.append("..")
|
||||||
|
from config import Config
|
||||||
|
config = Config()
|
||||||
|
|
||||||
import fast_langdetect
|
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
|
from split_lang import LangSplitter
|
||||||
|
Loading…
x
Reference in New Issue
Block a user