微信扫码
添加专属顾问
来源:single430 | 编辑:DeepLearning笔记
InternVL 2.0 超越了大多数开源模型。它在各种能力上表现出与闭源商业模型相媲美的竞争力,包括文档和图表理解、信息图表问答、场景文本理解和 OCR 任务、科学和数学问题解决,以及文化理解和综合多模态能力。
具体细节可以看这两篇文章:
InternVL系列:通过开源套件缩小与商业多模态模型的差距—成为GPT-4o的开创性开源替代方案
InternVL 2.0:多模态大模型新标杆
InternVL发布了多个版本,如下:
① 首先下载模型到本地,各位可以从mdoelscope(需要注册)和HF下载(HF需要翻墙),不过也可以使用HF的镜像网站:https://hf-mirror.com/,具体下载命令如下:
pip install -U huggingface_hubLinux: export HF_ENDPOINT=https://hf-mirror.comWindows: $env:HF_ENDPOINT = "https://hf-mirror.com"huggingface-cli download --local-dir-use-symlinks False --resume-download OpenGVLab/InternVL2-4B --local-dir OpenGVLab/InternVL2-4B
② 使用ms-swift进行微调,ms-swift已接入Internvl2系列模型,包括:Internvl2-2B, Internvl2-4B,Internvl2-8B,Internvl2-26B。命令安装:
# 设置pip全局镜像 (加速下载)pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/# 安装ms-swiftgit clone https://github.com/modelscope/swift.gitcd swiftpip install -e '.[llm]'
{"images": ["path/to/xxx.jpg"], "query": "描述图片内容", "response": "根据图片,里面xxx...", "history": [["query0", "response0"]]}{"query": "2+2等于多大", "response": "4", "history": [["query0", "response0"]]}{"images": ["path/to/xxx.jpg"], "query": "在以下图像中进行目标检测,并标出所有汽车。", "response": "<ref>汽车</ref><box>[[31, 530, 389, 944], [574, 533, 797, 875]]</box>", "history": []}④ 微调命令如下,以下参数可以根据实际情况修改(CUDA_VISIBLE_DEVICES,batch_size,max_length等, model_type可以设置其它模型):
#!/bin/bashexport CUDA_VISIBLE_DEVICES=0,1swift sft --model_type internvl2-4b \--model_id_or_path /path/to/InternVL2-4B \--gradient_checkpointing true \--custom_train_dataset_path /path/to/all_finetune_data_train_swift.jsonl \--custom_val_dataset_path /path/to/all_finetune_data_val_swift.jsonl \--batch_size 4 \--eval_batch_size 2 \--gradient_accumulation_steps 1 \--max_steps 20000 \--eval_steps 1000 \--save_steps 1000 \--learning_rate 1e-4 \--max_length 2048 \--sft_type lora
# 直接推理CUDA_VISIBLE_DEVICES=0 swift infer \--ckpt_dir output/internvl2-4b/vx-xxx/checkpoint-xxx \--custom_val_dataset_path /path/to/all_finetune_data_val_swift.jsonl# 合并后推理CUDA_VISIBLE_DEVICES=0 swift export \--ckpt_dir output/internvl2-4b/vx-xxx/checkpoint-xxx \--merge_lora trueCUDA_VISIBLE_DEVICES=0 swift infer \--ckpt_dir output/internvl2-4b/vx-xxx/checkpoint-xxx-merged \---custom_val_dataset_path /path/to/all_finetune_data_val_swift.jsonl
import numpy as npimport torchimport torchvision.transforms as Tfrom decord import VideoReader, cpufrom PIL import Imagefrom torchvision.transforms.functional import InterpolationModefrom transformers import AutoModel, AutoTokenizerIMAGENET_MEAN = (0.485, 0.456, 0.406)IMAGENET_STD = (0.229, 0.224, 0.225)def build_transform(input_size):MEAN, STD = IMAGENET_MEAN, IMAGENET_STDtransform = T.Compose([T.Lambda(lambda img: img.convert('RGB') if img.mode != 'RGB' else img),T.Resize((input_size, input_size), interpolation=InterpolationMode.BICUBIC),T.ToTensor(),T.Normalize(mean=MEAN, std=STD)])return transformdef find_closest_aspect_ratio(aspect_ratio, target_ratios, width, height, image_size):best_ratio_diff = float('inf')best_ratio = (1, 1)area = width * heightfor ratio in target_ratios:target_aspect_ratio = ratio[0] / ratio[1]ratio_diff = abs(aspect_ratio - target_aspect_ratio)if ratio_diff < best_ratio_diff:best_ratio_diff = ratio_diffbest_ratio = ratioelif ratio_diff == best_ratio_diff:if area > 0.5 * image_size * image_size * ratio[0] * ratio[1]:best_ratio = ratioreturn best_ratiodef dynamic_preprocess(image, min_num=1, max_num=6, image_size=448, use_thumbnail=False):orig_width, orig_height = image.sizeaspect_ratio = orig_width / orig_height# calculate the existing image aspect ratiotarget_ratios = set((i, j) for n in range(min_num, max_num + 1) for i in range(1, n + 1) for j in range(1, n + 1) ifi * j <= max_num and i * j >= min_num)target_ratios = sorted(target_ratios, key=lambda x: x[0] * x[1])# find the closest aspect ratio to the targettarget_aspect_ratio = find_closest_aspect_ratio(aspect_ratio, target_ratios, orig_width, orig_height, image_size)# calculate the target width and heighttarget_width = image_size * target_aspect_ratio[0]target_height = image_size * target_aspect_ratio[1]blocks = target_aspect_ratio[0] * target_aspect_ratio[1]# resize the imageresized_img = image.resize((target_width, target_height))processed_images = []for i in range(blocks):box = ((i % (target_width // image_size)) * image_size,(i // (target_width // image_size)) * image_size,((i % (target_width // image_size)) + 1) * image_size,((i // (target_width // image_size)) + 1) * image_size)# split the imagesplit_img = resized_img.crop(box)processed_images.append(split_img)assert len(processed_images) == blocksif use_thumbnail and len(processed_images) != 1:thumbnail_img = image.resize((image_size, image_size))processed_images.append(thumbnail_img)return processed_imagesdef load_image(image_file, input_size=448, max_num=6):image = Image.open(image_file).convert('RGB')transform = build_transform(input_size=input_size)images = dynamic_preprocess(image, image_size=input_size, use_thumbnail=True, max_num=max_num)pixel_values = [transform(image) for image in images]pixel_values = torch.stack(pixel_values)return pixel_valuespath = 'output/internvl2-4b/vx-xxx/checkpoint-xxx-merged'model = AutoModel.from_pretrained(path,torch_dtype=torch.bfloat16,low_cpu_mem_usage=True,trust_remote_code=True).eval().cuda()tokenizer = AutoTokenizer.from_pretrained(path, trust_remote_code=True)# set the max number of tiles in `max_num`pixel_values = load_image('./examples/image1.jpg', max_num=6).to(torch.bfloat16).cuda()generation_config = dict(num_beams=1,max_new_tokens=1024,do_sample=False,)# pure-text conversation (纯文本对话)question = 'Hello, who are you?'response, history = model.chat(tokenizer, None, question, generation_config, history=None, return_history=True)print(f'User: {question}')print(f'Assistant: {response}')question = 'Can you tell me a story?'response, history = model.chat(tokenizer, None, question, generation_config, history=history, return_history=True)print(f'User: {question}')print(f'Assistant: {response}')# single-image single-round conversation (单图单轮对话)question = '<image>\nPlease describe the image shortly.'response = model.chat(tokenizer, pixel_values, question, generation_config)print(f'User: {question}')print(f'Assistant: {response}')# single-image multi-round conversation (单图多轮对话)question = '<image>\n描述图片中的详细内容.'response, history = model.chat(tokenizer, pixel_values, question, generation_config, history=None, return_history=True)print(f'User: {question}')print(f'Assistant: {response}')
1) 使用lmdeploy v0.5.0, 需要先设置chat template. 创建如下json文件chat_template.json{"model_name":"internlm2","meta_instruction":"你是由上海人工智能实验室开发的书生多模态大模型,英文名叫InternVL, 是一个有用无害的人工智能助手。","stop_words":["<|im_start|>", "<|im_end|>"]}2) 使用lmdeploy部署internvl的api服务lmdeploy serve api_server output/internvl2-4b/vx-xxx/checkpoint-xxx-merged --model-name InternVL2-4B --server-port 9433 --chat-template chat_template.json3) 使用OpenAI样式接口需要安装OpenAIpip install openai4) 接口调用from openai import OpenAIclient = OpenAI(api_key='可不填', base_url='http://0.0.0.0:9433/v1')model_name = client.models.list().data[0].idresponse = client.chat.completions.create(model="InternVL2-4B",messages=[{'role': 'user','content': [{'type': 'text','text': '描述这幅画',}, {'type': 'image_url','image_url': {'url':'https://modelscope.oss-cn-beijing.aliyuncs.com/resource/tiger.jpeg',},}],}],temperature=0.8,top_p=0.8)print(response)
* 以及我对一些数据集的整理,各位可自行下载:
* 部分标签文件这里下载
https://huggingface.co/OpenGVLab/InternVL/resolve/main/playground.zip
一:AI2D: ai2d_images (provided by InternLM-XComposer) -- 1.3GBhttps://drive.google.com/file/d/1dqqa3MnrxMXaU_K9JA6C83je32ibwdOY/view?usp=sharing二:ChartQA: ChartQA Dataset800+MBhttps://huggingface.co/datasets/ahmed-masry/ChartQA/resolve/main/ChartQA%20Dataset.zip三:COCO: train2017 18GBhttp://images.cocodataset.org/zips/train2017.zip四:DocVQA: train 6.6GB, val 825MB, test 879MBhttps://datasets.cvc.uab.es/rrc/DocVQA/train.tar.gzhttps://datasets.cvc.uab.es/rrc/DocVQA/val.tar.gzhttps://datasets.cvc.uab.es/rrc/DocVQA/test.tar.gz五:DVQA: images 5GBhttps://drive.google.com/file/d/1iKH2lTi1-QxtNUVRxTUWFvUvRHq6HAsZ/view六:GQA: images 20.3GBhttps://downloads.cs.stanford.edu/nlp/data/gqa/images.zip七:LLaVA-Pretrain: images 25.5GBhttps://huggingface.co/datasets/liuhaotian/LLaVA-Pretrain/resolve/main/images.zip八:OCR-VQA(图像问答,书籍封面): download script. We save all files as .jpg 20GBhttps://drive.google.com/drive/folders/1_GYPY5UkUy7HIcR0zq3ZCFgeZN7BAfm_?usp=sharing九:SAM: We only use 000000~000050.tar for now. You can quickly download 9K images from here. 8GBhttps://drive.google.com/file/d/1dKumdOKSXtV7lIXdrG7jsIK_z2vZv2gs/view?usp=drive_link十:TextVQA: trainvalimages 6.6GBhttps://dl.fbaipublicfiles.com/textvqa/images/train_val_images.zip十一:SynthDoG-EN(OCR数据集): We only use 00000~00004 parquet files for now, with a total of 30K images. We provide the converted images. 2.2GBhttps://huggingface.co/OpenGVLab/InternVL/resolve/main/synthdog-en-images.zip十二:VisualGenome: part1 9.1GB, part2 5.1GBhttps://cs.stanford.edu/people/rak248/VG_100K_2/images.ziphttps://cs.stanford.edu/people/rak248/VG_100K_2/images2.zip十三:WebData: images. Only for academic usage. 9GBhttps://drive.google.com/drive/folders/1tCUQ-sq6vdshZVkF0ZeF3K4eztkXJgax?usp=sharing十四:GeoQA+(几何数学题): GeoQA+ images20MBhttps://drive.google.com/file/d/1KL4_wIzr3p8XSKMkkLgYcYwCbb0TzZ9O/viewhttps://huggingface.co/OpenGVLab/InternVL/resolve/main/geoqa%2B_images.zip
参考:
1. https://github.com/OpenGVLab/InternVL2. https://github.com/modelscope/swift3. https://mp.weixin.qq.com/s/OUaVLkxlk1zhFb1cvMCFjg
53AI,企业落地大模型首选服务商
产品:场景落地咨询+大模型应用平台+行业解决方案
承诺:免费POC验证,效果达标后再合作。零风险落地应用大模型,已交付160+中大型企业
2026-06-19
从 BERT 标注到 Agent Skill:短文本标签体系的四次“工业革命”
2026-05-14
多轮 Agent 场景下,滴滴的 EAGLE-3 训推加速实践
2026-05-06
谁说 Mac 只能写代码?Google 官宣:M 芯片本地微调 Gemma 4 时代开启!
2026-04-20
用 Unsloth 微调 Embedding 模型,让你的 RAG 检索不再答非所问
2026-04-15
ComfyUI v0.19.0 更新:大量新节点、新模型、新修复与性能优化全面落地,工作流与训练能力再升级
2026-04-13
Agent 持续学习落地路径:先做 Traces,再做 Context,最后才微调模型 | Jinqiu Select
2026-03-23
养死四只龙虾的小白有感
2026-03-22
Mistral Forge 的真正意义:企业AI从“租用”走向“拥有”
2026-04-15
2026-04-13
2026-04-20
2026-05-06
2026-05-14
2026-06-19
2026-01-02
2025-11-19
2025-09-25
2025-06-20
2025-06-17
2025-05-21
2025-05-17
2025-05-14
欢迎您使用【53AI 官方网站】(以下简称“本网站”或“我们”)。本《会员服务协议》(以下简称“本协议”)是您(以下简称“会员”或“用户”)与【深圳市博思协创网络科技有限公司】之间关于注册、登录及使用本网站会员服务所订立的法律协议。
在您注册或登录前,请务必审慎阅读、充分理解各条款内容,特别是免除或限制责任的条款、知识产权条款、争议解决条款等。此类条款将以加粗形式提示您注意。 当您通过微信公众号授权、手机验证码验证或其他方式成功登录本网站时,即视为您已完全理解并同意接受本协议的全部内容。
一、 定义
本网站:指由【深圳市博思协创网络科技有限公司】运营的,域名为【53ai.com】的网站及相关移动端页面。
会员服务:指本网站向注册会员提供的知识库文章查阅、内容检索及其他相关增值服务。
知识库内容:指本网站发布的包括但不限于文字、图表、数据、研究报告、行业分析等数字化内容资源。
二、 账号注册与登录
登录方式:本网站支持以下登录方式,您可根据实际情况选择:
微信公众号授权登录:您同意将您的微信OpenID信息授权给本网站,用于创建或关联会员账号。
手机验证码登录:您需提供真实有效的手机号码,并通过短信验证码完成身份验证与登录/注册。
账号安全:您的账号仅限您本人使用,禁止赠与、借用、租用、转让或售卖。因您保管不善导致的账号被盗、密码泄露等损失,由您自行承担。
实名认证:根据相关法律法规要求,我们可能要求您在特定功能下完成实名认证。如您拒绝提供,可能无法使用部分或全部服务。
未成年人保护:若您未满18周岁,请在法定监护人的陪同下阅读本协议,并在征得监护人同意后使用本服务。
三、 服务内容与规范
知识库查阅权限:会员登录后,有权按照其会员等级对应的权限范围,在线浏览、检索本网站知识库中的相关文章及内容。
服务变更:我们有权根据业务发展需要,调整、变更或终止部分服务内容,并将以网站公告、公众号消息等方式提前通知。
禁止行为:您在使用服务时不得实施以下行为:
利用技术手段批量爬取、下载、转存知识库内容;
将知识库内容用于商业目的或未经授权地向第三方传播;
干扰本网站正常运行或侵犯其他用户合法权益;
发布违法违规信息或从事违反公序良俗的活动。
四、 知识产权声明
权利归属:本网站知识库中的排版设计、软件代码等内容的知识产权均归【公司全称】或原权利人所有,受《中华人民共和国著作权法》等法律保护。
有限许可:本网站授予会员一项非独占、不可转让、不可转授权的普通许可,仅限于个人学习、研究之目的在线查阅知识库内容。
侵权追责:未经书面许可,任何单位或个人不得以任何形式复制、转载、摘编、镜像、汇编或以其他方式使用上述内容。一经发现,我们保留追究其法律责任的权利。
五、 个人信息保护
我们重视对您个人信息的保护。关于我们如何收集、使用、存储和保护您的个人信息,请单独阅读 《隐私政策》。
您通过微信公众号授权或手机号验证所提供的信息,我们将严格按照《个人信息保护法》的规定处理,仅用于身份识别、服务提供及安全验证等必要用途。
您可以随时通过网站设置或联系客服行使查阅、更正、删除个人信息及撤回授权同意的权利。
六、 免责声明
内容准确性:知识库内容仅供参考,不构成专业建议。我们不对其完整性、准确性、时效性作任何明示或暗示的保证,您应自行判断并承担使用风险。
不可抗力:因自然灾害、政策法规变化、网络故障、第三方平台接口异常(如微信接口维护、运营商短信通道故障)等不可抗力导致的服务中断或延迟,我们不承担违约责任。
第三方链接:本网站可能包含指向第三方网站的链接,该等网站的内容和服务不受我们控制,请您自行甄别风险。
七、 违约责任
如您违反本协议约定,我们有权视情节采取警告、限制功能、暂停服务、注销账号等措施,并保留要求赔偿损失的权利。
如因您的违约行为导致我们遭受行政处罚、第三方索赔或商誉损失,您应承担全部赔偿责任(包括但不限于罚款、赔偿金、律师费、公证费等)。
八、 法律适用与争议解决
本协议的订立、执行和解释均适用中华人民共和国大陆地区法律。
因本协议产生的或与本协议有关的任何争议,双方应友好协商解决;协商不成的,任何一方均可向【公司所在地】有管辖权的人民法院提起诉讼。
九、 其他
本协议构成双方就本服务达成的完整协议,取代此前任何口头或书面约定。
本协议任一条款被认定为无效或不可执行的,不影响其他条款的效力。
我们对本协议享有最终解释权,并在法律允许的范围内保留随时修改的权利。修改后的协议一经公布即生效,继续使用服务即视为同意修订内容。