From 3fd7d89daa1b722f9f73e2ce5a8820f17f983fca Mon Sep 17 00:00:00 2001 From: Yiying Yang <25113050158@m.fudan.edu.cn> Date: Sun, 1 Mar 2026 23:40:10 +0800 Subject: [PATCH] Add files via upload --- lottie/objects/lottie_tokenize.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lottie/objects/lottie_tokenize.py b/lottie/objects/lottie_tokenize.py index 3f1a35d..e818fac 100644 --- a/lottie/objects/lottie_tokenize.py +++ b/lottie/objects/lottie_tokenize.py @@ -3724,8 +3724,6 @@ class LottieTensor: if model_path is None: # 尝试多个可能的路径 possible_paths = [ - '/mnt/jfs-test/Qwen2.5-VL-3B-Instruct', - '/data/models/Qwen2.5-VL-3B-Instruct', 'Qwen/Qwen2.5-VL-3B-Instruct', # HuggingFace Hub ] for path in possible_paths: @@ -3746,7 +3744,7 @@ class LottieTensor: def get_tokenizer(cls): if cls.tokenizer is None: from transformers import AutoTokenizer - cls.tokenizer = AutoTokenizer.from_pretrained('/mnt/jfs-test/Qwen2.5-VL-3B-Instruct') + cls.tokenizer = AutoTokenizer.from_pretrained('Qwen/Qwen2.5-VL-3B-Instruct') return cls.tokenizer