From 4770aaf6ba612662e8c4f731788bea68fa4eb606 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=88=92=E9=85=92=E7=9A=84=E6=9D=8E=E7=99=BD?= <670939375@qq.com> Date: Tue, 5 Aug 2025 19:23:27 +0800 Subject: [PATCH] Update the prediction script to change the imported model configuration to QWEN3_MODELS. --- WeiboSentiment_SmallQwen/predict_universal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WeiboSentiment_SmallQwen/predict_universal.py b/WeiboSentiment_SmallQwen/predict_universal.py index e473b31..8a8e3f5 100644 --- a/WeiboSentiment_SmallQwen/predict_universal.py +++ b/WeiboSentiment_SmallQwen/predict_universal.py @@ -14,7 +14,7 @@ from typing import List, Dict, Tuple, Any # 添加当前目录到路径 sys.path.append(os.path.dirname(os.path.abspath(__file__))) -from models_config import MODEL_CONFIGS, MODEL_PATHS +from models_config import QWEN3_MODELS, MODEL_PATHS from qwen3_embedding_universal import Qwen3EmbeddingUniversal from qwen3_lora_universal import Qwen3LoRAUniversal