Files
wehub-resource-sync a203934033
Lint test / lint (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:34:58 +08:00

1366 lines
60 KiB
Python

import os
import torch
os.environ['CUDA_VISIBLE_DEVICES'] = '0,1,2,3'
os.environ['ASCEND_RT_VISIBLE_DEVICES'] = '0,1,2,3'
os.environ['SWIFT_DEBUG'] = '1'
def _infer_model(engine, system=None, messages=None, images=None, **kwargs):
seed_everything(42)
max_tokens = kwargs.get('max_tokens', 128)
request_config = RequestConfig(max_tokens=max_tokens, temperature=0, repetition_penalty=1)
if messages is None:
messages = []
if system is not None:
messages += [{'role': 'system', 'content': system}]
messages += [{'role': 'user', 'content': '你好'}]
resp = engine.infer([{'messages': messages}], request_config=request_config)
response = resp[0].choices[0].message.content
messages += [{'role': 'assistant', 'content': response}, {'role': 'user', 'content': '<image>这是什么'}]
else:
messages = messages.copy()
if images is None:
images = ['http://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/cat.png']
resp = engine.infer([{'messages': messages, 'images': images, **kwargs}], request_config=request_config)
response = resp[0].choices[0].message.content
messages += [{'role': 'assistant', 'content': response}]
logger.info(f'model: {engine.model_info.model_name}, messages: {messages}')
return response
def test_qwen2_vl():
engine = TransformersEngine('Qwen/Qwen2-VL-2B-Instruct')
response = _infer_model(engine)
engine.template.template_backend = 'jinja'
response2 = _infer_model(engine)
assert response == response2 == '这是一只小猫的图片。它有黑白相间的毛发,眼睛大而圆,显得非常可爱。'
def test_qwen2_5_vl_batch_infer():
from qwen_vl_utils import process_vision_info
engine = TransformersEngine('Qwen/Qwen2.5-VL-7B-Instruct', max_batch_size=2)
request_config = RequestConfig(max_tokens=128, temperature=0)
resp = engine.infer([{
'messages': [{
'role': 'user',
'content': '<image>What kind of dog is this?'
}],
'images': ['https://qianwen-res.oss-accelerate-overseas.aliyuncs.com/Qwen2-VL/demo_small.jpg']
}, {
'messages': [{
'role': 'user',
'content': '<video>describe the video.'
}],
'videos': ['https://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/baby.mp4']
}],
request_config=request_config)
response_list = [resp[0].choices[0].message.content, resp[1].choices[0].message.content]
model = engine.model
template = engine.template
processor = template.processor
messages1 = [{
'role':
'user',
'content': [
{
'type': 'image',
'image': 'https://qianwen-res.oss-accelerate-overseas.aliyuncs.com/Qwen2-VL/demo_small.jpg'
},
{
'type': 'text',
'text': 'What kind of dog is this?'
},
],
}]
messages2 = [{
'role':
'user',
'content': [
{
'type': 'video',
'video': 'https://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/baby.mp4'
},
{
'type': 'text',
'text': 'describe the video.'
},
],
}]
messages = [messages1, messages2]
texts = [processor.apply_chat_template(msg, tokenize=False, add_generation_prompt=True) for msg in messages]
image_inputs, video_inputs = process_vision_info(messages)
inputs = processor(
text=texts,
images=image_inputs,
videos=video_inputs,
padding=True,
return_tensors='pt',
padding_side='left',
)
inputs = inputs.to('cuda')
# Batch Inference
generated_ids = model.generate(**inputs, max_new_tokens=128, do_sample=False)
generated_ids_trimmed = [out_ids[len(in_ids):] for in_ids, out_ids in zip(inputs.input_ids, generated_ids)]
output_texts = processor.batch_decode(
generated_ids_trimmed, skip_special_tokens=True, clean_up_tokenization_spaces=False)
assert output_texts == response_list
def test_qwen2_5_omni():
engine = TransformersEngine('Qwen/Qwen2.5-Omni-7B')
response = _infer_model(engine)
engine.template.template_backend = 'jinja'
response2 = _infer_model(engine)
assert response == response2
def _run_qwen3_omni_hf(model, processor, messages):
from qwen_omni_utils import process_mm_info
text = processor.apply_chat_template(messages, add_generation_prompt=True, tokenize=False)
audios, images, videos = process_mm_info(messages, use_audio_in_video=False)
inputs = processor(text=text, audio=audios, images=images, videos=videos, return_tensors='pt', padding=True)
inputs = inputs.to(device=model.device, dtype=model.dtype)
text_ids = model.generate(**inputs, use_audio_in_video=False, do_sample=False, max_new_tokens=128)
text = processor.decode(
text_ids[0][len(inputs['input_ids'][0]):], skip_special_tokens=True, clean_up_tokenization_spaces=False)
return text
def test_qwen3_omni():
query = 'describe the image.'
images = ['http://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/cat.png']
engine = TransformersEngine('Qwen/Qwen3-Omni-30B-A3B-Thinking')
messages = [{'role': 'user', 'content': query}]
response = _infer_model(engine, messages=messages, images=images)
messages = [
{
'role': 'user',
'content': [
{
'type': 'image',
'image': images[0]
},
{
'type': 'text',
'text': query
},
],
},
]
response2 = _run_qwen3_omni_hf(engine.model, engine.processor, messages)
assert response == response2
def test_qwen3_omni_audio():
query = 'describe the audio.'
audios = ['http://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/weather.wav']
engine = TransformersEngine('Qwen/Qwen3-Omni-30B-A3B-Instruct')
messages = [{'role': 'user', 'content': query}]
response = _infer_model(engine, messages=messages, images=[], audios=audios)
messages = [
{
'role': 'user',
'content': [
{
'type': 'audio',
'audio': audios[0]
},
{
'type': 'text',
'text': query
},
],
},
]
response2 = _run_qwen3_omni_hf(engine.model, engine.processor, messages)
assert response == response2[:len(response)]
def test_qvq():
engine = TransformersEngine('Qwen/QVQ-72B-Preview')
response = _infer_model(engine)
engine.template.template_backend = 'jinja'
response2 = _infer_model(engine)
assert response == response2
def test_internvl2():
engine = TransformersEngine('OpenGVLab/InternVL2-2B')
response = _infer_model(engine)
engine.template.template_backend = 'jinja'
response2 = _infer_model(engine)
assert response == response2
def test_internvl2_phi3():
engine = TransformersEngine('OpenGVLab/Mini-InternVL-Chat-4B-V1-5')
_infer_model(engine, system='')
engine.template.template_backend = 'jinja'
_infer_model(engine, system='')
def test_internvl3_8b():
engine = TransformersEngine('OpenGVLab/InternVL3-8B')
response = _infer_model(engine)
engine.template.template_backend = 'jinja'
response2 = _infer_model(engine, system='你是书生·万象,英文名是InternVL,是由上海人工智能实验室、清华大学及多家合作单位联合开发的多模态大语言模型。')
assert response == response2
def test_internvl3_9b():
engine = TransformersEngine('OpenGVLab/InternVL3-9B')
response = _infer_model(engine)
engine.template.template_backend = 'jinja'
response2 = _infer_model(engine, system='你是书生·万象,英文名是InternVL,是由上海人工智能实验室、清华大学及多家合作单位联合开发的多模态大语言模型。')
assert response == response2
def test_llava():
engine = TransformersEngine('AI-ModelScope/llava-v1.6-mistral-7b')
_infer_model(engine)
def test_yi_vl():
engine = TransformersEngine('01ai/Yi-VL-6B')
_infer_model(engine)
def test_glm4v():
# There will be differences in '\n'. This is normal.
engine = TransformersEngine('ZhipuAI/glm-4v-9b')
messages = [{'role': 'user', 'content': '描述这张图片'}]
response = _infer_model(engine, messages=messages)
engine.template.template_backend = 'jinja'
response2 = _infer_model(engine, messages=messages)
assert response == ('这张图片是一只小猫的特写,它有着非常醒目的蓝色眼睛和混合了灰色、白色和棕色毛发的皮毛。小猫的耳朵竖立着,胡须清晰可见。它的眼神看起来既好奇又警觉,整体上显得非常可爱。')
assert response2 == ('这是一张特写照片,展示了一只毛茸茸的小猫。小猫的眼睛大而圆,呈深蓝色,眼珠呈金黄色,非常明亮。它的鼻子短而小巧,'
'是粉色的。小猫的嘴巴紧闭,胡须细长。它的耳朵竖立着,耳朵内侧是白色的,外侧是棕色的。小猫的毛发看起来柔软而浓密,'
'主要是白色和棕色相间的花纹。背景模糊不清,但似乎是一个室内环境。')
def test_cogagent():
engine = TransformersEngine('ZhipuAI/cogagent-9b-20241220')
messages = [{
'role':
'user',
'content':
"""<image>Task: I'm looking for a software to \"edit my photo with grounding\"
History steps:
(Platform: Mac)
(Answer in Action-Operation-Sensitive format.)"""
}]
images = ['https://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/agent.png']
response = _infer_model(engine, messages=messages, images=images)
engine.template.template_backend = 'jinja'
response2 = _infer_model(engine, messages=messages, images=images)
assert response == response2 == (
"""Action: Click on the 'Adobe Photoshop 2023' icon located in the middle of the screen to open the application.
Grounded Operation: CLICK(box=[[346,574,424,710]], element_type='卡片', element_info='Adobe Photoshop 2023')
<<一般操作>>""")
def test_minicpmv():
# engine = TransformersEngine('OpenBMB/MiniCPM-V-2_6')
messages = [{'role': 'user', 'content': '<image>descibe the picture?'}]
engine = TransformersEngine('OpenBMB/MiniCPM-V-4')
response = _infer_model(engine, messages=messages)
assert response[:100] == ('The image features a close-up of a kitten with a soft and fluffy appearance. '
'The kitten has a striki')
def test_minicpmo():
engine = TransformersEngine('OpenBMB/MiniCPM-o-2_6')
messages = [{
'role':
'user',
'content':
'<image><image>Compare image 1 and image 2, tell me about the differences between image 1 and image 2.'
}]
images = [
'http://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/cat.png',
'http://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/animal.png'
]
response = _infer_model(engine, messages=messages, images=images)
engine.template.template_backend = 'jinja'
response2 = _infer_model(engine, messages=messages, images=images)
assert response == response2 == (
'The main difference between image 1 and image 2 is the subject matter. '
'Image 1 features a close-up of a kitten, while image 2 depicts a cartoon illustration of four sheep '
'standing in a grassy field. The setting, the number of subjects, and the overall style of the images '
'are distinct from each other.')
def test_got_ocr():
# https://github.com/modelscope/ms-swift/issues/2122
engine = TransformersEngine('stepfun-ai/GOT-OCR2_0')
_infer_model(
engine,
messages=[{
'role': 'user',
'content': 'OCR: '
}],
images=['https://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/ocr.png'])
def test_got_ocr_hf():
engine = TransformersEngine('stepfun-ai/GOT-OCR-2.0-hf')
response = _infer_model(
engine,
messages=[{
'role': 'user',
'content': 'OCR: '
}],
images=['https://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/ocr.png'])
assert response[:200] == ('简介 SWIFT支持250+LLM和35+MLLM(多模态大模型)的训练、推理、 评测和部署。开发者可以直接将'
'我们的框架应用到自己的Research和 生产环境中,实现模型训练评测到应用的完整链路。我们除支持了 PEFT提供的轻量训练方案外'
',也提供了一个完整的Adapters库以支持 最新的训练技术,如NEFTune、LoRA+、LLaMA-PRO等,这个适配器 库可以脱离训练脚本'
'直接使用在自己的')
def test_llama_vision():
engine = TransformersEngine('LLM-Research/Llama-3.2-11B-Vision-Instruct')
response = _infer_model(engine)
engine.template.template_backend = 'jinja'
response2 = _infer_model(engine)
assert response == response2
def test_llava_hf():
engine = TransformersEngine('llava-hf/llava-v1.6-mistral-7b-hf')
response = _infer_model(engine)
engine.template.template_backend = 'jinja'
response2 = _infer_model(engine)
assert response == response2
def test_florence():
engine = TransformersEngine('AI-ModelScope/Florence-2-base-ft')
_infer_model(engine, messages=[{'role': 'user', 'content': 'who are you?'}], images=[])
response = _infer_model(
engine,
messages=[{
'role': 'user',
'content': '<OD>'
}],
images=['http://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/animal.png'])
print(f'response: {response}')
def test_phi3_vision():
# engine = TransformersEngine('LLM-Research/Phi-3-vision-128k-instruct')
engine = TransformersEngine('LLM-Research/Phi-3.5-vision-instruct')
_infer_model(engine)
engine.template.template_backend = 'jinja'
_infer_model(engine)
def test_qwen_vl():
engine = TransformersEngine('Qwen/Qwen-VL-Chat')
_infer_model(engine)
def test_llava_onevision_hf():
engine = TransformersEngine('llava-hf/llava-onevision-qwen2-0.5b-ov-hf')
response = _infer_model(engine)
engine.template.template_backend = 'jinja'
response2 = _infer_model(engine)
assert response == response2
def test_xcomposer2_5():
engine = TransformersEngine('Shanghai_AI_Laboratory/internlm-xcomposer2d5-ol-7b:base', torch.float16)
# engine = TransformersEngine('Shanghai_AI_Laboratory/internlm-xcomposer2d5-7b')
response = _infer_model(engine, system='')
engine.template.template_backend = 'jinja'
response2 = _infer_model(engine)
assert response == response2
def test_deepseek_vl():
# engine = TransformersEngine('deepseek-ai/deepseek-vl-1.3b-chat')
engine = TransformersEngine('deepseek-ai/Janus-1.3B')
_infer_model(engine)
def test_deepseek_janus():
engine = TransformersEngine('deepseek-ai/Janus-Pro-7B')
messages = [{'role': 'user', 'content': '描述图片'}]
response = _infer_model(engine, messages=messages)
assert response == ('这是一张非常可爱的猫咪图片。猫咪的毛色主要是白色,并带有灰色的条纹。它的眼睛非常大,呈现出明亮的蓝色,'
'显得非常可爱和无辜。猫咪的耳朵竖立着,显得非常警觉和好奇。背景模糊,使得猫咪成为图片的焦点。'
'整体画面给人一种温暖和愉悦的感觉。')
def test_deepseek_vl2():
engine = TransformersEngine('deepseek-ai/deepseek-vl2-small')
response = _infer_model(engine)
assert response == ('这是一只可爱的小猫。它有着大大的蓝色眼睛和柔软的毛发,看起来非常天真无邪。小猫的耳朵竖立着,显得非常警觉和好奇。'
'它的鼻子小巧而粉红,嘴巴微微张开,似乎在探索周围的环境。整体来看,这只小猫非常可爱,充满了活力和好奇心。')
def test_mplug_owl2():
# engine = TransformersEngine('iic/mPLUG-Owl2')
engine = TransformersEngine('iic/mPLUG-Owl2.1')
_infer_model(engine, messages=[{'role': 'user', 'content': '<image>这是什么'}])
def test_mplug_owl3():
# engine = TransformersEngine('iic/mPLUG-Owl3-7B-240728')
engine = TransformersEngine('iic/mPLUG-Owl3-7B-241101')
response = _infer_model(engine, system='')
engine.template.template_backend = 'jinja'
response2 = _infer_model(engine, system='')
assert response == response2
def test_ovis1_6():
engine = TransformersEngine('AIDC-AI/Ovis1.6-Gemma2-9B')
# engine = TransformersEngine('AIDC-AI/Ovis1.6-Gemma2-27B')
response = _infer_model(engine)
engine.template.template_backend = 'jinja'
response2 = _infer_model(engine)
assert response == response2
def test_ovis1_6_llama3():
engine = TransformersEngine('AIDC-AI/Ovis1.6-Llama3.2-3B')
messages = [{'role': 'user', 'content': '这是什么'}]
# llama3
response = _infer_model(engine, messages=messages)
engine.template.template_backend = 'jinja'
# llama3_2
_infer_model(engine, messages=messages, system='You are a helpful and honest multimodal assistant.')
assert response == '这是一只小猫。从图中可见的特征如大眼睛、细长的白色鼻毛和毛发的图案,表明它可能属于常见的猫种。猫的表情和毛发的质感显示出它年轻,可能是幼猫。'
def test_ovis2():
engine = TransformersEngine('AIDC-AI/Ovis2-2B') # with flash_attn
response = _infer_model(engine, messages=[{'role': 'user', 'content': 'Describe the image.'}])
assert response[:200] == ('The image features a close-up portrait of a young kitten with striking blue eyes. '
'The kitten has a distinctive coat pattern with a mix of gray, black, and white fur, '
'typical of a tabby pattern. Its ea')
def test_ovis2_5():
engine = TransformersEngine('AIDC-AI/Ovis2.5-2B') # with flash_attn
response = _infer_model(engine, messages=[{'role': 'user', 'content': 'Describe the image.'}])
assert response[:100] == ('<think>\n用户现在需要描述这张图片。首先看主体是一只小猫,风格是卡通或艺术化处理,'
'毛发有模糊效果,显得柔和。颜色方面,小猫的毛色是灰白相间,有深色条纹,耳朵内侧粉色,'
'眼睛大而圆,蓝色,瞳孔黑色,')
def test_paligemma():
engine = TransformersEngine('AI-ModelScope/paligemma-3b-mix-224')
response = _infer_model(engine, messages=[{'role': 'user', 'content': 'detect cat'}])
assert response == '<loc0000><loc0000><loc1022><loc1022> cat'
def test_paligemma2():
engine = TransformersEngine('AI-ModelScope/paligemma2-3b-ft-docci-448', torch_dtype=torch.bfloat16)
response = _infer_model(engine, messages=[{'role': 'user', 'content': 'caption en'}])
assert response == (
'A close up view of a white and gray kitten with black stripes on its head and face staring forward with '
'its light blue eyes. The kitten is sitting on a white surface with a blurry background. '
"There is a light shining on the top of the kitten's head and the front of its body.")
def test_pixtral():
engine = TransformersEngine('AI-ModelScope/pixtral-12b')
_infer_model(engine, messages=[{'role': 'user', 'content': '<image>这是什么'}])
def test_glm_edge_v():
engine = TransformersEngine('ZhipuAI/glm-edge-v-2b')
_infer_model(engine, messages=[{'role': 'user', 'content': '<image>这是什么'}])
def test_internvl2_5():
engine = TransformersEngine('OpenGVLab/InternVL2_5-26B')
_infer_model(engine)
engine.template.template_backend = 'jinja'
_infer_model(engine, system='你是书生·万象,英文名是InternVL,是由上海人工智能实验室、清华大学及多家合作单位联合开发的多模态大语言模型。')
def test_internvl2_5_mpo():
engine = TransformersEngine('OpenGVLab/InternVL2_5-1B-MPO', model_type='internvl2_5')
response = _infer_model(engine, messages=[{'role': 'user', 'content': 'Hello, who are you?'}], images=[])
assert response == ("Hello! I'm an AI assistant whose name is InternVL, developed jointly by Shanghai AI Lab, "
'Tsinghua University and other partners.')
response2 = _infer_model(engine, messages=[{'role': 'user', 'content': '<image>这是什么'}])
assert response2 == ('这是一只小猫的特写照片。照片中的小猫有大大的蓝色眼睛和毛发,看起来非常可爱。这种照片通常用于展示宠物的可爱瞬间。')
def test_megrez_omni():
engine = TransformersEngine('InfiniAI/Megrez-3B-Omni')
_infer_model(engine)
response = _infer_model(
engine,
messages=[{
'role': 'user',
'content': [
{
'type': 'image'
},
{
'type': 'audio',
'audio': 'weather.wav'
},
]
}])
assert response == ('根据图片,无法确定确切的天气状况。然而,猫咪放松的表情和柔和的光线可能暗示着是一个晴朗或温和的日子。'
'没有阴影或明亮的阳光表明这不是正午时分,也没有雨滴或雪花的迹象,这可能意味着不是下雨或下雪的日子。')
def test_molmo():
# engine = TransformersEngine('LLM-Research/Molmo-7B-O-0924')
engine = TransformersEngine('LLM-Research/Molmo-7B-D-0924')
_infer_model(engine)
response = _infer_model(engine, messages=[{'role': 'user', 'content': '<image>这是什么'}])
assert response == (
' This is a close-up photograph of a young kitten. '
'The kitten has striking blue eyes and a mix of white and black fur, '
'with distinctive black stripes on its head and face. '
"It's looking directly at the camera with an alert and curious expression. "
"The kitten's fur appears soft and fluffy, and its pink nose and white whiskers are clearly visible. "
'The background is blurred, which emphasizes the kitten as the main subject of the image.')
def test_molmoe():
engine = TransformersEngine('LLM-Research/MolmoE-1B-0924')
response = _infer_model(engine, messages=[{'role': 'user', 'content': '<image>这是什么'}])
assert response == (" This is a close-up photograph of a kitten's face. The kitten has striking blue eyes and "
"a mix of white, black, and brown fur. It's looking directly at the camera with an adorable "
"expression, its ears perked up and whiskers visible. The image captures the kitten's cute "
'features in sharp detail, while the background is blurred, creating a soft, out-of-focus '
"effect that emphasizes the young feline's charm.")
def test_doc_owl2():
engine = TransformersEngine('iic/DocOwl2', torch_dtype=torch.float16)
response = _infer_model(engine, messages=[{'role': 'user', 'content': '你是谁'}], images=[])
images = [
'https://modelscope.cn/models/iic/DocOwl2/resolve/master/examples/docowl2_page0.png',
'https://modelscope.cn/models/iic/DocOwl2/resolve/master/examples/docowl2_page1.png',
'https://modelscope.cn/models/iic/DocOwl2/resolve/master/examples/docowl2_page2.png',
'https://modelscope.cn/models/iic/DocOwl2/resolve/master/examples/docowl2_page3.png',
'https://modelscope.cn/models/iic/DocOwl2/resolve/master/examples/docowl2_page4.png',
'https://modelscope.cn/models/iic/DocOwl2/resolve/master/examples/docowl2_page5.png',
]
response = _infer_model(
engine,
messages=[{
'role': 'user',
'content': '<image>' * len(images) + 'what is this paper about? provide detailed information.'
}],
images=images)
assert response == (
'This paper is about multimodal Language Models(MLMs) achieving promising OCR-free '
'Document Understanding by performing understanding by the cost of generating thorough sands of visual '
'tokens for a single document image, leading to excessive GPU computation time. The paper also discusses '
'the challenges and limitations of existing multimodal OCR approaches and proposes a new framework for '
'more efficient and accurate OCR-free document understanding.')
def test_valley():
engine = TransformersEngine('bytedance-research/Valley-Eagle-7B')
_infer_model(engine)
def test_ui_tars():
os.environ['MAX_PIXELS'] = str(1280 * 28 * 28)
engine = TransformersEngine('bytedance-research/UI-TARS-2B-SFT')
prompt = ('You are a GUI agent. You are given a task and your action history, with screenshots. '
'You need to perform the next action to complete the task.' + r"""
## Output Format
```\nThought: ...
Action: ...\n```
## Action Space
click(start_box='<|box_start|>(x1,y1)<|box_end|>')
left_double(start_box='<|box_start|>(x1,y1)<|box_end|>')
right_single(start_box='<|box_start|>(x1,y1)<|box_end|>')
drag(start_box='<|box_start|>(x1,y1)<|box_end|>', end_box='<|box_start|>(x3,y3)<|box_end|>')
hotkey(key='')
type(content='') #If you want to submit your input, use \"\
\" at the end of `content`.
scroll(start_box='<|box_start|>(x1,y1)<|box_end|>', direction='down or up or right or left')
wait() #Sleep for 5s and take a screenshot to check for any changes.
finished()
call_user() # Submit the task and call the user when the task is unsolvable, or when you need the user's help.
## Note
- Use Chinese in `Thought` part.
- Summarize your next action (with its target element) in one sentence in `Thought` part.
## User Instruction
""")
instruction = "I'm looking for a software to \"edit my photo with grounding\""
messages = [
{
'role': 'user',
'content': [
{
'type': 'text',
'text': prompt + instruction
},
],
},
]
images = ['https://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/agent.png']
response = _infer_model(engine, messages=messages, images=images)
engine.template.template_backend = 'jinja'
response2 = _infer_model(engine, messages=messages, images=images)
assert response == response2
def test_phi4_vision():
engine = TransformersEngine('LLM-Research/Phi-4-multimodal-instruct')
response = _infer_model(engine, messages=[{'role': 'user', 'content': 'describe the image.'}])
assert response == (
"The image features a close-up of a kitten's face. The kitten has large, "
'round eyes with a bright gaze, and its fur is predominantly white with black stripes. '
"The kitten's ears are pointed and alert, and its whiskers are visible. The background is blurred, "
"drawing focus to the kitten's face.")
response = _infer_model(
engine,
messages=[{
'role': 'user',
'content': 'describe the audio.'
}],
images=[],
audios=['http://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/weather.wav'])
assert response == '今天天气真好呀'
def test_gemma3_vision():
engine = TransformersEngine('LLM-Research/gemma-3-4b-it')
response = _infer_model(engine, messages=[{'role': 'user', 'content': '<image>Describe this image in detail.'}])
engine.template.template_backend = 'jinja'
response2 = _infer_model(engine, messages=[{'role': 'user', 'content': '<image>Describe this image in detail.'}])
assert response[:80] == response2[:80] == (
"Here's a detailed description of the image:\n\n**Overall Impression:**\n\nThe image ")
def test_mistral_2503():
engine = TransformersEngine('mistralai/Mistral-Small-3.1-24B-Instruct-2503')
response = _infer_model(engine, messages=[{'role': 'user', 'content': 'What is shown in this image?'}])
assert response == (
'The image shows a close-up of a Siamese kitten. The kitten has distinctive blue almond-shaped eyes, '
'a pink nose, and a light-colored coat with darker points on the ears, paws, tail, and face, '
'which are characteristic features of the Siamese breed. '
'The kitten appears to be looking directly at the viewer with a curious and endearing expression.')
def test_llama4():
engine = TransformersEngine('LLM-Research/Llama-4-Scout-17B-16E-Instruct')
messages = [{'role': 'user', 'content': '<image><image>What is the difference between the two images?'}]
images = [
'http://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/cat.png',
'http://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/animal.png'
]
response = _infer_model(engine, messages=messages, images=images)
assert response[:128] == ('The two images are distinct in their subject matter and style. The first image features '
'a realistic depiction of a kitten, while') and len(response) == 654
def test_kimi_vl():
engine = TransformersEngine('moonshotai/Kimi-VL-A3B-Instruct')
messages = [{'role': 'user', 'content': '<image><image>What is the difference between the two images?'}]
images = [
'http://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/cat.png',
'http://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/animal.png'
]
response = _infer_model(engine, messages=messages, images=images)
assert response == ('The first image is a close-up of a kitten with a blurred background, '
'while the second image is a cartoon of four sheep standing in a field.')
def test_kimi_vl_thinking():
engine = TransformersEngine('moonshotai/Kimi-VL-A3B-Thinking-2506')
messages = [{'role': 'user', 'content': '<image><image>What is the difference between the two images?'}]
images = [
'http://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/cat.png',
'http://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/animal.png'
]
response = _infer_model(engine, messages=messages, images=images)
assert response[:200] == ("◁think▷So, let's analyze the two images. The first image is a close - "
'up of a real kitten with detailed fur, whiskers, and a realistic style. '
'The second image is an illustration of four sheep in a car')
def test_glm4_1v():
models = ['ZhipuAI/GLM-4.1V-9B-Thinking']
messages = [{'role': 'user', 'content': '<image><image>What is the difference between the two images?'}]
images = [
'http://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/cat.png',
'http://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/animal.png'
]
for model in models:
engine = TransformersEngine(model)
response = _infer_model(engine, messages=messages, images=images)
engine.template.template_backend = 'jinja'
response2 = _infer_model(engine, messages=messages, images=images)
assert response == response2
def test_glyph():
messages = [{'role': 'user', 'content': '<image><image>What is the difference between the two images?'}]
images = [
'http://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/cat.png',
'http://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/animal.png'
]
engine = TransformersEngine('ZhipuAI/Glyph')
response = _infer_model(engine, messages=messages, images=images)
engine.template.template_backend = 'jinja'
response2 = _infer_model(engine, messages=messages, images=images)
assert response == response2
def test_gemma3n():
engine = TransformersEngine('google/gemma-3n-E2B-it')
messages = [{
'role': 'system',
'content': 'You are a helpful assistant.'
}, {
'role': 'user',
'content': 'Describe this image in detail.'
}]
images = [
'http://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/cat.png',
]
response = _infer_model(engine, messages=messages, images=images)
assert response[:200] == (
'The image is a close-up portrait of an adorable kitten, filling the frame with its captivating presence.'
' The kitten is the clear focal point, positioned slightly off-center, looking directly at the vi')
def test_keye_vl():
engine = TransformersEngine('Kwai-Keye/Keye-VL-8B-Preview')
messages = [{'role': 'user', 'content': '<image><image>What is the difference between the two images?'}]
images = [
'http://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/cat.png',
'http://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/animal.png'
]
engine.template.template_backend = 'swift'
response = _infer_model(engine, messages=messages, images=images)
engine.template.template_backend = 'jinja'
response2 = _infer_model(engine, messages=messages, images=images)
assert response == response2
def test_keye_vl_1_5():
engine = TransformersEngine('Kwai-Keye/Keye-VL-1_5-8B')
messages = [{'role': 'user', 'content': 'Describe this image.'}]
images = [
'http://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/cat.png',
]
engine.template.template_backend = 'swift'
response = _infer_model(engine, messages=messages, images=images)
assert response[:200] == ('<analysis>This question is straightforward and asks for a description of the image. '
'Therefore, /no_think mode is more appropriate.</analysis>'
'This image features a close-up of an adorable kitten with s')
def test_dots_ocr():
# https://github.com/modelscope/ms-swift/issues/2122
engine = TransformersEngine('rednote-hilab/dots.ocr')
messages = [{'role': 'user', 'content': '<image>Extract the text content from this image.'}]
images = ['https://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/ocr.png']
response = _infer_model(engine, messages=messages, images=images)
engine.template.template_backend = 'jinja'
response2 = _infer_model(engine, messages=messages, images=images)
assert response == response2
def test_glm4_5v():
messages = [{'role': 'user', 'content': '<image><image>What is the difference between the two images?'}]
images = [
'http://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/cat.png',
'http://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/animal.png'
]
engine = TransformersEngine('ZhipuAI/GLM-4.5V')
response = _infer_model(engine, messages=messages, images=images)
engine.template.template_backend = 'jinja'
response2 = _infer_model(engine, messages=messages, images=images)
assert response == response2
def run_hf(model, processor, messages):
inputs = processor.apply_chat_template(
messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors='pt').to(
model.device, dtype=torch.bfloat16)
generate_ids = model.generate(**inputs, max_new_tokens=128, do_sample=False)
decoded_output = processor.decode(generate_ids[0, inputs['input_ids'].shape[1]:], skip_special_tokens=True)
return decoded_output
def test_interns1():
engine = TransformersEngine('Shanghai_AI_Laboratory/Intern-S1-mini')
images = ['http://images.cocodataset.org/val2017/000000039769.jpg']
query = 'Please describe the image explicitly.'
messages = [{'role': 'user', 'content': query}]
response = _infer_model(engine, messages=messages, images=images)
engine.template.template_backend = 'jinja'
response2 = _infer_model(engine, messages=messages, images=images)
messages = [{
'role': 'user',
'content': [
{
'type': 'image',
'url': images[0]
},
{
'type': 'text',
'text': query
},
],
}]
response2 = run_hf(engine.model, engine.processor, messages)
assert response == '<think>' + response2
def test_internvl3_5():
models = [
'OpenGVLab/InternVL3_5-1B', 'OpenGVLab/InternVL3_5-2B', 'OpenGVLab/InternVL3_5-4B', 'OpenGVLab/InternVL3_5-8B',
'OpenGVLab/InternVL3_5-14B', 'OpenGVLab/InternVL3_5-38B', 'OpenGVLab/InternVL3_5-30B-A3B',
'OpenGVLab/InternVL3_5-GPT-OSS-20B-A4B-Preview'
]
for model in models:
engine = TransformersEngine(model)
images = ['http://images.cocodataset.org/val2017/000000039769.jpg']
messages = [{'role': 'user', 'content': 'Please describe the image explicitly.'}]
response = _infer_model(engine, messages=messages, images=images)
engine.template.template_backend = 'jinja'
response2 = _infer_model(engine, messages=messages, images=images)
assert response == response2
def test_internvl3_hf():
engine = TransformersEngine('OpenGVLab/InternVL3-1B-hf')
images = ['http://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/cat.png']
query = 'Please describe the image explicitly.'
messages = [{'role': 'user', 'content': query}]
response = _infer_model(engine, messages=messages, images=images)
messages = [{
'role': 'user',
'content': [
{
'type': 'image',
'url': images[0]
},
{
'type': 'text',
'text': query
},
],
}]
response2 = run_hf(engine.model, engine.processor, messages)
assert response == response2
def test_internvl3_5_hf():
engine = TransformersEngine('OpenGVLab/InternVL3_5-1B-HF')
images = ['http://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/cat.png']
query = 'Please describe the image explicitly.'
messages = [{'role': 'user', 'content': query}]
response = _infer_model(engine, messages=messages, images=images)
messages = [{
'role': 'user',
'content': [
{
'type': 'image',
'url': images[0]
},
{
'type': 'text',
'text': query
},
],
}]
response2 = run_hf(engine.model, engine.processor, messages)
assert response == response2
def test_internvl_gpt_hf():
engine = TransformersEngine('OpenGVLab/InternVL3_5-GPT-OSS-20B-A4B-Preview-HF')
query = 'Please describe the image explicitly.'
messages = [{'role': 'user', 'content': query}]
images = ['http://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/cat.png']
response = _infer_model(engine, messages=messages, images=images)
messages = [{
'role': 'user',
'content': [
{
'type': 'image',
'url': images[0]
},
{
'type': 'text',
'text': query
},
],
}]
response2 = run_hf(engine.model, engine.processor, messages)
assert response == response2
def test_minicpmv4_5():
engine = TransformersEngine('OpenBMB/MiniCPM-V-4_5')
images = ['http://images.cocodataset.org/val2017/000000039769.jpg']
messages = [{'role': 'user', 'content': 'Please describe the image explicitly.'}]
response = _infer_model(engine, messages=messages, images=images)
engine.template.template_backend = 'jinja'
response2 = _infer_model(engine, messages=messages, images=images)
assert response == response2
def test_minicpmv4_6():
engine = TransformersEngine('OpenBMB/MiniCPM-V-4.6')
images = ['http://images.cocodataset.org/val2017/000000039769.jpg']
messages = [{'role': 'user', 'content': 'Please describe the image explicitly.'}]
engine.template.enable_thinking = False
response = _infer_model(engine, messages=messages, images=images)
engine.template.template_backend = 'jinja'
response2 = _infer_model(engine, messages=messages, images=images)
assert response == response2
def _run_qwen3_vl_hf(messages, model, processor):
from qwen_vl_utils import process_vision_info
text = processor.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
images, videos = process_vision_info(messages, image_patch_size=16)
inputs = processor(text=text, images=images, videos=videos, do_resize=False, return_tensors='pt')
inputs = inputs.to(model.device)
generated_ids = model.generate(**inputs, max_new_tokens=128, do_sample=False)
generated_ids_trimmed = [out_ids[len(in_ids):] for in_ids, out_ids in zip(inputs.input_ids, generated_ids)]
output_text = processor.batch_decode(
generated_ids_trimmed, skip_special_tokens=True, clean_up_tokenization_spaces=False)
return output_text[0]
def test_qwen3_vl():
engine = TransformersEngine('Qwen/Qwen3-VL-4B-Instruct')
images = ['http://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/cat.png']
query = 'describe this image.'
messages = [{'role': 'user', 'content': query}]
response = _infer_model(engine, messages=messages, images=images)
engine.template.template_backend = 'jinja'
response2 = _infer_model(engine, messages=messages, images=images)
messages = [{
'role': 'user',
'content': [
{
'type': 'image',
'image': images[0],
},
{
'type': 'text',
'text': query
},
],
}]
engine.model.generation_config.repetition_penalty = 1
response3 = _run_qwen3_vl_hf(messages, engine.model, engine.processor)
assert response == response2 == response3
def test_sailvl2():
engine = TransformersEngine('BytedanceDouyinContent/SAIL-VL2-2B')
query = 'describe the image'
messages = [{'role': 'user', 'content': query}]
images = ['http://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/cat.png']
response = _infer_model(engine, messages=messages, images=images)
ans = ("The image showcases a stunning close-up of a kitten's face, "
'capturing its delicate features in exquisite detail. '
"The kitten's fur is a beautiful blend of white and gray, "
'with distinctive black stripes adorning its head and face. '
'Its large, expressive eyes are a captivating blue-green color, framed by a soft white muzzle. '
"The kitten's pink nose and delicate whiskers add to its charming appearance.")
assert ans in response
def test_deepseek_ocr():
engine = TransformersEngine('deepseek-ai/DeepSeek-OCR', attn_impl='flash_attention_2')
query = 'Free OCR.'
messages = [{'role': 'user', 'content': query}]
images = ['http://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/ocr.png']
response = _infer_model(engine, messages=messages, images=images, max_tokens=256)
assert response == ('# 简介\n\nSWIFT支持250+ LLM和35+ MLLM(多模态大模型)的训练、推理、评测和部署。开发者可以直接'
'将我们的框架应用到自己的Research和生产环境中,实现模型训练评测到应用的完整链路。我们除支持了PEFT提'
'供的轻量训练方案外,也提供了一个完整的**Adapters库**以支持最新的训练技术,如NEFTune、LoRA+、'
'LLaMA-PRO等,这个适配器库可以脱离训练脚本直接使用在自己的自定流程中。\n\n为方便不熟悉深度学习的用'
'户使用,我们提供了一个Gradio的web-ui用于控制训练和推理,并提供了配套的深度学习课程和最佳实践供新手'
'入门。\n\n此外,我们也在拓展其他模态的能力,目前我们支持了AnimateDiff的全参数训练和LoRA训练。\n'
'\nSWIFT具有丰富的文档体系,如有使用问题请查看这里。\n\n可以在Huggingface space 和 ModelScope'
'创空间 中体验SWIFT web-ui功能了。')
def test_deepseek_ocr_2():
engine = TransformersEngine('deepseek-ai/DeepSeek-OCR-2', attn_impl='flash_attention_2')
query = 'Free OCR.'
messages = [{'role': 'user', 'content': query}]
images = ['http://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/ocr.png']
response = _infer_model(engine, messages=messages, images=images, max_tokens=256)
assert response == ('# 简介\n\nSWIFT支持250+ LLM和35+ MLLM(多模态大模型)的训练、推理、评测和部署。开发者可以直接'
'将我们的框架应用到自己的Research和生产环境中,实现模型训练评测到应用的完整链路。我们除支持PEFT提'
'供的轻量训练方案外,也提供了一个完整的Adapters库以支持最新的训练技术,如NEFTune、LoRA+、'
'LLaMA-PRO等,这个适配器库可以脱离训练脚本直接使用在自己的自定流程中。\n\n为方便不熟悉深度学习的'
'用户使用,我们提供了一个Gradio的web-ui用于控制训练和推理,并提供了配套的深度学习课程和最佳实践供'
'新手入门。\n\n此外,我们也在拓展其他模态的能力,目前我们支持了AnimateDiff的全参数训练和LoRA训练'
'。\n\nSWIFT具有丰富的文档体系,如有使用问题请查看这里。\n\n可以在Huggingface space 和 '
'ModelScope创空间 中体验SWIFT web-ui功能了。')
def test_llava_onevision1_5():
engine = TransformersEngine('lmms-lab/LLaVA-OneVision-1.5-4B-Instruct')
query = 'Describe this image.'
messages = [{'role': 'user', 'content': query}]
images = ['https://qianwen-res.oss-cn-beijing.aliyuncs.com/Qwen-VL/assets/demo.jpeg']
response = _infer_model(engine, messages=messages, images=images)
engine.template.template_backend = 'jinja'
response2 = _infer_model(engine, messages=messages, images=images)
assert response == response2
def test_paddle_ocr():
os.environ['CUDA_VISIBLE_DEVICES'] = '0'
os.environ['ASCEND_RT_VISIBLE_DEVICES'] = '0'
engine = TransformersEngine('PaddlePaddle/PaddleOCR-VL')
query = 'OCR:'
messages = [{'role': 'user', 'content': query}]
images = ['http://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/ocr.png']
response = _infer_model(engine, messages=messages, images=images, max_tokens=1024)
assert response == ('SWIFT支持250+ LLM和35+ MLLM(多模态大模型)的训练、推理、评测和部署。开发者可以直接将我们的框架'
'应用到自己的Research和生产环境中,实现模型训练评测到应用的完整链路。我们除支持了PEFT提供的轻量训练'
'方案外,也提供了一个完整的Adapters库以支持最新的训练技术,如NEFTune、LoRA+、LLaMA-PRO等,这个适'
'配器库可以脱离训练脚本直接使用在自己的自定流程中。\n\n为方便不熟悉深度学习的用户使用,我们提供了一个'
'Gradio的web-ui用于控制训练和推理,并提供了配套的深度学习课程和最佳实践供新手入门。\n\n此外,我们也'
'在拓展其他模态的能力,目前我们支持了AnimateDiff的全参数训练和LoRA训练。\n\nSWIFT具有丰富的文档体'
'系,如有使用问题请请查看这里。\n\n可以在Huggingface space 和 ModelScope创空间 中体验SWIFT web'
'-ui功能了。')
def test_ernie_vl():
engine = TransformersEngine('PaddlePaddle/ERNIE-4.5-VL-28B-A3B-PT')
messages = [{'role': 'user', 'content': '<image><image>What is the difference between the two images?'}]
images = [
'http://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/cat.png',
'http://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/animal.png'
]
response = _infer_model(engine, messages=messages, images=images)
engine.template.template_backend = 'jinja'
response2 = _infer_model(engine, messages=messages, images=images)
assert response == response2
def _infer_ernie_vl_thinking_hf(model, processor, messages):
text = processor.tokenizer.apply_chat_template(
messages,
tokenize=False,
add_generation_prompt=True,
)
image_inputs, video_inputs = processor.process_vision_info(messages)
text = text.replace('User: ', 'User: ')
text = text.replace(' Picture 2:', 'Picture 2:')
inputs = processor(
text=[text],
images=image_inputs,
videos=video_inputs,
padding=True,
return_tensors='pt',
)
device = next(model.parameters()).device
inputs = inputs.to(device)
generated_ids = model.generate(inputs=inputs['input_ids'].to(device), **inputs, max_new_tokens=128, use_cache=False)
output_text = processor.decode(generated_ids[0][len(inputs['input_ids'][0]):])
return output_text
def test_ernie_vl_thinking():
engine = TransformersEngine('PaddlePaddle/ERNIE-4.5-VL-28B-A3B-Thinking')
query = 'What is the difference between the two images?'
messages = [{'role': 'user', 'content': query}]
images = [
'http://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/cat.png',
'http://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/animal.png'
]
response = _infer_model(engine, messages=messages, images=images)
messages = [{
'role':
'user',
'content': [
{
'type': 'image_url',
'image_url': {
'url': images[0]
}
},
{
'type': 'image_url',
'image_url': {
'url': images[1]
}
},
{
'type': 'text',
'text': query,
},
]
}]
response2 = _infer_ernie_vl_thinking_hf(engine.model, engine.template.processor, messages)
assert response == '\n<think>\n' + response2
def test_mistral_2506():
engine = TransformersEngine('mistralai/Mistral-Small-3.2-24B-Instruct-2506')
response = _infer_model(engine, messages=[{'role': 'user', 'content': 'describe the image.'}])
assert response[:200] == (
'The image features a close-up of a kitten with striking blue eyes. The kitten has a soft, '
'fluffy coat with a mix of white, gray, and brown fur. Its fur pattern includes distinct '
'stripes, particularly ')
def test_sensenova_si():
engine = TransformersEngine('SenseNova/SenseNova-SI-1.1-InternVL3-8B')
response = _infer_model(engine)
engine.template.template_backend = 'jinja'
response2 = _infer_model(engine, system='你是书生·万象,英文名是InternVL,是由上海人工智能实验室、清华大学及多家合作单位联合开发的多模态大语言模型。')
assert response == response2
def test_mistral_2512():
engine = TransformersEngine('mistralai/Ministral-3-8B-Instruct-2512-BF16')
response = _infer_model(engine, messages=[{'role': 'user', 'content': 'describe the image.'}])
assert response[:256] == (
'This image depicts a charming kitten with a few notable features:\n\n'
'1. **Appearance**: The kitten has a soft, fluffy coat with a mix of white '
'and grayish-brown stripes, typical of a tabby pattern. The fur appears plush and slightly ruffled, '
'especially aroun')
def test_mistral_2512_thinking():
engine = TransformersEngine('mistralai/Ministral-3-8B-Reasoning-2512')
response1 = _infer_model(engine, messages=[{'role': 'user', 'content': 'describe the image.'}])
engine.template.template_backend = 'jinja'
response2 = _infer_model(engine, messages=[{'role': 'user', 'content': 'describe the image.'}])
assert response1[:256] == response2[:256]
def test_hunyuan_ocr():
engine = TransformersEngine('Tencent-Hunyuan/HunyuanOCR')
images = ['http://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/ocr.png']
messages = [{
'role':
'user',
'content': ('Extract all information from the main body of the document image '
'and represent it in markdown format, ignoring headers and footers. '
'Tables should be expressed in HTML format, formulas in the document '
'should be represented using LaTeX format, and the parsing should be '
'organized according to the reading order.')
}]
response1 = _infer_model(engine, messages=messages, images=images)
engine.template.template_backend = 'jinja'
response2 = _infer_model(engine, messages=messages, images=images)
assert response1 == response2
def test_medgemma3_vision():
engine = TransformersEngine('google/medgemma-4b-it')
images = ['https://qianwen-res.oss-cn-beijing.aliyuncs.com/Qwen-VL/assets/demo.jpeg']
system = 'You are an expert radiologist.'
messages = [{
'role': 'user',
'content': 'Describe this image',
}]
response = _infer_model(engine, messages=messages, images=images, system=system)
engine.template.template_backend = 'jinja'
response2 = _infer_model(engine, messages=messages, images=images, system=system)
assert response == response2
def test_step3_vl():
engine = TransformersEngine('stepfun-ai/Step3-VL-10B')
images = ['https://qianwen-res.oss-cn-beijing.aliyuncs.com/Qwen-VL/assets/demo.jpeg']
messages = [{
'role': 'user',
'content': 'Describe this image',
}]
response = _infer_model(engine, messages=messages, images=images)
engine.template.template_backend = 'jinja'
response2 = _infer_model(engine, messages=messages, images=images)
assert response == response2
def test_paddle_ocr_1_5():
os.environ['CUDA_VISIBLE_DEVICES'] = '0'
os.environ['ASCEND_RT_VISIBLE_DEVICES'] = '0'
engine = TransformersEngine('PaddlePaddle/PaddleOCR-VL-1.5')
query = 'OCR:'
messages = [{'role': 'user', 'content': query}]
images = ['http://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/ocr.png']
response = _infer_model(engine, messages=messages, images=images, max_tokens=512)
assert response == ('简介\nSWIFT支持250+ LLM和35+ MLLM(多模态大模型)的训练、推理、评测和部署。开发者可以直接将我们的框架'
'应用到自己的Research和生产环境中,实现模型训练评测到应用的完整链路。我们除支持了PEFT提供的轻量训练方案外,'
'也提供了一个完整的Adapters库以支持最新的训练技术,如NEFTune、LoRA+、LLaMA-PRO等,这个适配器库可以脱离训'
'练脚本直接使用在自己的自定流程中。\n为方便不熟悉深度学习的用户使用,我们提供了一个Gradio的web-ui用于控制训'
'练和推理,并提供了配套的深度学习课程和最佳实践供新手入门。\n此外,我们也在拓展其他模态的能力,目前我们支持了'
'AnimateDiff的全参数训练和LoRA训练。\nSWIFT具有丰富的文档体系,如有使用问题请请查看这里.\n'
'可以在\\(\\underline{\\text{Huggingface space}}\\)'
'和\\(\\underline{\\text{ModelScope创空间}}\\)'
'中体验SWIFT web-ui功能了。')
def test_glm_ocr():
engine = TransformersEngine('ZhipuAI/GLM-OCR')
query = 'Text Recognition:'
messages = [{'role': 'user', 'content': query}]
images = ['http://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/ocr.png']
response = _infer_model(engine, messages=messages, images=images, max_tokens=512)
assert response == ('简介\n\nSWIFT支持250+ LLM和35+ MLLM(多模态大模型)的训练、推理、\n'
'评测和部署。开发者可以直接将我们的框架应用到自己的Research和\n'
'生产环境中,实现模型训练评测到应用的完整链路。我们除支持了\n'
'PEFT提供的轻量训练方案外,也提供了一个完整的Adapters库以支持\n'
'最新的训练技术,如NEFTune、LoRA+、LLaMA-PRO等,这个适配器\n'
'库可以脱离训练脚本直接使用在自己的自定流程中。\n\n'
'为方便不熟悉深度学习的用户使用,我们提供了一个Gradio的web-ui用\n'
'于控制训练和推理,并提供了配套的深度学习课程和最佳实践供新手入\n'
'门。\n\n'
'此外,我们也在拓展其他模态的能力,目前我们支持了AnimateDiff的\n'
'全参数训练和LoRA训练。\n\n'
'SWIFT具有丰富的文档体系,如有使用问题请请查看这里.\n\n'
'可以在Huggingface space 和 ModelScope创空间 中体验SWIFT web-\n'
'ui功能了。')
def test_gemma4():
engine = TransformersEngine('google/gemma-4-E2B-it')
images = ['http://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/cat.png']
messages = [{
'role': 'user',
'content': 'What is shown in this image?',
}]
response = _infer_model(engine, messages=messages, images=images)
print(response)
def test_mineru2_5_pro():
engine = TransformersEngine('OpenDataLab/MinerU2.5-Pro-2604-1.2B')
images = ['http://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/ocr.png']
messages = [{
'role': 'user',
'content': '<image>\nText Recognition:',
}]
response = _infer_model(engine, messages=messages, images=images)
print(response)
def test_unlimited_ocr():
engine = TransformersEngine('PaddlePaddle/Unlimited-OCR')
query = 'Free OCR.'
messages = [{'role': 'user', 'content': query}]
images = ['http://modelscope-open.oss-cn-hangzhou.aliyuncs.com/images/ocr.png']
response = _infer_model(engine, messages=messages, images=images, max_tokens=256)
print(response)
if __name__ == '__main__':
from swift.infer_engine import RequestConfig, TransformersEngine
from swift.utils import get_logger, seed_everything
logger = get_logger()
# test_qwen2_vl()
# test_qwen2_5_vl_batch_infer()
# test_qwen2_5_omni()
# test_qwen3_omni()
# test_qwen3_omni_audio()
# test_internvl2()
# test_internvl2_phi3()
# test_llava()
# test_ovis1_6()
# test_ovis1_6_llama3()
# test_ovis2()
# test_ovis2_5()
# test_yi_vl()
# test_deepseek_vl()
# test_deepseek_janus()
# test_deepseek_vl2()
# test_qwen_vl()
# test_glm4v()
# test_cogagent()
# test_llava_onevision_hf()
# test_minicpmv()
# test_got_ocr()
# test_got_ocr_hf()
# test_paligemma()
# test_paligemma2()
# test_pixtral()
# test_llama_vision()
# test_llava_hf()
# test_florence()
# test_glm_edge_v()
# test_phi3_vision()
# test_phi4_vision()
# test_internvl2_5()
# test_internvl2_5_mpo()
# test_mplug_owl3()
# test_xcomposer2_5()
# test_megrez_omni()
# test_qvq()
# test_mplug_owl2()
# test_molmo()
# test_molmoe()
# test_doc_owl2()
# test_minicpmo()
# test_valley()
# test_ui_tars()
# test_gemma3_vision()
# test_mistral_2503()
# test_llama4()
# test_internvl3_8b()
# test_internvl3_9b()
# test_kimi_vl()
# test_kimi_vl_thinking()
# test_glm4_1v()
# test_glyph()
# test_gemma3n()
# test_keye_vl()
# test_dots_ocr()
# test_glm4_5v()
# test_interns1()
# test_internvl3_5()
# test_minicpmv4_5()
test_minicpmv4_6()
# test_qwen3_vl()
# test_keye_vl_1_5()
# test_internvl3_hf()
# test_internvl3_5_hf()
# test_internvl_gpt_hf()
# test_sailvl2()
# test_deepseek_ocr()
# test_llava_onevision1_5()
# test_paddle_ocr()
# test_ernie_vl()
# test_ernie_vl_thinking()
# test_mistral_2506()
# test_sensenova_si()
# test_mistral_2512()
# test_mistral_2512_thinking()
# test_hunyuan_ocr()
# test_medgemma3_vision()
# test_deepseek_ocr_2()
# test_step3_vl()
# test_paddle_ocr_1_5()
# test_glm_ocr()
# test_gemma4()
# test_mineru2_5_pro()
# test_unlimited_ocr()