Skip to content

Commit 025c525

Browse files
fix httperror (#71)
1 parent ff25ae0 commit 025c525

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

examples/pytorch/llm/src/utils/model.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -180,27 +180,27 @@ class LoRATM(NamedTuple):
180180
# 'ignore_file_pattern', 'lora_TM'
181181
MODEL_MAPPING = {
182182
'qwen-7b': {
183-
'model_id': 'qwen/Qwen-7B', # model id or model dir
184-
'revision': 'v1.0.5',
183+
'model_id': 'ccyh123/Qwen-7B', # model id or model dir
184+
'revision': 'v1.0.0',
185185
'get_function': get_model_tokenizer_qwen,
186186
'lora_TM': LoRATM.qwen,
187187
},
188188
'qwen-7b-chat': {
189-
'model_id': 'qwen/Qwen-7B-Chat',
190-
'revision': 'v1.0.7',
189+
'model_id': 'ccyh123/Qwen-7B-Chat',
190+
'revision': 'v1.0.0',
191191
'get_function': get_model_tokenizer_qwen,
192192
'template': 'chatml',
193193
'lora_TM': LoRATM.qwen,
194194
},
195195
'qwen-vl': {
196-
'model_id': 'qwen/Qwen-VL',
197-
'revision': 'v1.0.2',
196+
'model_id': 'ccyh123/Qwen-VL',
197+
'revision': 'v1.0.0',
198198
'get_function': get_model_tokenizer_qwen_vl,
199199
'lora_TM': LoRATM.qwen,
200200
},
201201
'qwen-vl-chat': {
202-
'model_id': 'qwen/Qwen-VL-Chat',
203-
'revision': 'v1.0.2',
202+
'model_id': 'ccyh123/Qwen-VL-Chat',
203+
'revision': 'v1.0.0',
204204
'get_function': get_model_tokenizer_qwen_vl,
205205
'template': 'chatml',
206206
'lora_TM': LoRATM.qwen,

0 commit comments

Comments
 (0)