更改fast_langdetect为可配置项,可在config.py中设置是否使用自定义识别器 [吐槽一下怎么做测试的文本是go批啊(喜)]

This commit is contained in:
Intro 2025-03-13 05:07:06 +08:00
parent 86f7a7d985
commit 46d993ed04
No known key found for this signature in database
GPG Key ID: 6D51E0E45C73FBA6

View File

@ -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