Update the prediction script to change the imported model configuration to QWEN3_MODELS.
Showing
1 changed file
with
1 additions
and
1 deletions
| @@ -14,7 +14,7 @@ from typing import List, Dict, Tuple, Any | @@ -14,7 +14,7 @@ from typing import List, Dict, Tuple, Any | ||
| 14 | # 添加当前目录到路径 | 14 | # 添加当前目录到路径 |
| 15 | sys.path.append(os.path.dirname(os.path.abspath(__file__))) | 15 | sys.path.append(os.path.dirname(os.path.abspath(__file__))) |
| 16 | 16 | ||
| 17 | -from models_config import MODEL_CONFIGS, MODEL_PATHS | 17 | +from models_config import QWEN3_MODELS, MODEL_PATHS |
| 18 | from qwen3_embedding_universal import Qwen3EmbeddingUniversal | 18 | from qwen3_embedding_universal import Qwen3EmbeddingUniversal |
| 19 | from qwen3_lora_universal import Qwen3LoRAUniversal | 19 | from qwen3_lora_universal import Qwen3LoRAUniversal |
| 20 | 20 |
-
Please register or login to post a comment