2026年7月9日 周四晚上19:30,报名腾讯会议了解“如何构建自进化的动态知识库(Brain)”(限30人)
免费POC, 零成本试错
FDE知识库

FDE知识库

学习大模型的前沿技术与行业落地应用


收藏

多图理解,更懂中文,支持function call的Phi-3.5来了!

发布日期:2024-09-16 19:04:43 浏览次数: 3745
作者:魔搭ModelScope社区

微信搜一搜,关注“魔搭ModelScope社区”

01

引言


微软继今年4月推出Phi-3系列小型语言模型后,又一鼓作气三连发布并开源其「小而美」系列 Phi-3.5模型!


本次发布的三个模型各有特色:


Mini型:Phi-3.5-mini-instruct(3.8B)

Phi-3.5 mini 具有 38 亿个参数,基于Phi-3 的数据集(合成数据和经过筛选的公开网站)构建,重点关注高质量、推理密集的数据。该模型属于 Phi-3 模型系列,支持 128K 令牌上下文长度。该模型经过了严格的增强过程,结合了监督微调、近端策略优化和直接偏好优化,以确保精确遵守指令和强大的安全措施。Phi-3.5 mini 在中文场景有所增强,但是受限于模型的大小,依然会有较多的事实错误,通过RAG的方式可以有效降低错误。


MoE型:Phi-3.5-MoE-instruct  (16x3.8B)

Phi-3.5-MoE-instruct是一个MoE模型,有 16x3.8B 个参数,使用 2 位专家时有 6.6B 个活动参数。该模型使用词汇量为 32,064 的标记器。Phi-3.5-MoE-instruct在推理能力上大大增强(尤其是数学和逻辑),也非常适用于function call的场景。


多模态:Phi-3.5-vision-instruct (4.2B)

Phi-3.5-vision-instruct 多模态版本可支持 128K 上下文长度(以 token 为单位)有 4.2B 参数,主要包含图像编码器和 Phi-3 Mini 语言模型。本次Phi-3.5-vision-instruct 支持多图理解,在如下场景上有较好的效果:

  • 一般图像理解;

  • 光学字符识别 (OCR)

  • 图表和表格理解;

  • 多幅图像比较;

  • 多图像或视频片段摘要


同时魔搭社区已经上线Phi-3.5-mini-instruct-GGUF,可更加方便的使用ollama,llama.cpp,lmstudio等工具运行。


模型链接:

Phi-3.5-mini-instruct:

https://modelscope.cn/models/LLM-Research/Phi-3.5-mini-instruct


Phi-3.5-MoE-instruct:

https://modelscope.cn/models/LLM-Research/Phi-3.5-MoE-instruct


Phi-3.5-vision-instruct :

https://modelscope.cn/models/LLM-Research/Phi-3.5-vision-instruct


Phi-3.5-mini-instruct-GGUF:

https://modelscope.cn/models/LLM-Research/Phi-3.5-mini-instruct-GGUF


cookbook链接:

https://github.com/microsoft/Phi-3CookBook


02

模型推理


Phi-3.5-mini-instruct

小模型Phi-3.5-mini-instruct在中文能力上有更好的支持。

import torchfrom modelscope import AutoModelForCausalLM, AutoTokenizerfrom transformers import pipeline
torch.random.manual_seed(0)
model = AutoModelForCausalLM.from_pretrained( "LLM-Research/Phi-3.5-mini-instruct", device_map="cuda", torch_dtype="auto", trust_remote_code=True, )tokenizer = AutoTokenizer.from_pretrained("LLM-Research/Phi-3.5-mini-instruct")
messages = "<|system|>\n 你是我的人工智能助手,协助我用中文解答问题.\n<|end|><|user|>\n 你知道长沙吗?? \n<|end|><|assistant|>"
pipe = pipeline( "text-generation", model=model, tokenizer=tokenizer,)
generation_args = { "max_new_tokens": 500, "return_full_text": False, "temperature": 0.0, "do_sample": False,}
output = pipe(messages, **generation_args)print(output[0]['generated_text'])


Phi-3.5-vision-instruct

多模态模型Phi-3.5-vision-instruct支持了多图理解

from PIL import Image import requests from transformers import AutoModelForCausalLM from transformers import AutoProcessor from modelscope import snapshot_download
model_id = snapshot_download("LLM-Research/Phi-3.5-vision-instruct")
# Note: set _attn_implementation='eager' if you don't have flash_attn installedmodel = AutoModelForCausalLM.from_pretrained( model_id, device_map="cuda", trust_remote_code=True, torch_dtype="auto", _attn_implementation='flash_attention_2' )
# for best performance, use num_crops=4 for multi-frame, num_crops=16 for single-frame.processor = AutoProcessor.from_pretrained(model_id, trust_remote_code=True, num_crops=4)
images = []placeholder = ""
# Note: if OOM, you might consider reduce number of frames in this example.for i in range(1,20): url = f"https://modelscope.oss-cn-beijing.aliyuncs.com/resource/Introduction-to-Microsoft-Azure-Cloud-{i}-2048.webp" images.append(Image.open(requests.get(url, stream=True).raw)) placeholder += f"<|image_{i}|>\n"
messages = [ {"role": "user", "content": placeholder+"Summarize the deck of slides."},]
prompt = processor.tokenizer.apply_chat_template( messages, tokenize=False, add_generation_prompt=True)
inputs = processor(prompt, images, return_tensors="pt").to("cuda:0")
generation_args = { "max_new_tokens": 1000, "temperature": 0.0, "do_sample": False, }
generate_ids = model.generate(**inputs, eos_token_id=processor.tokenizer.eos_token_id, **generation_args)
# remove input tokens generate_ids = generate_ids[:, inputs['input_ids'].shape[1]:]response = processor.batch_decode(generate_ids, skip_special_tokens=True, clean_up_tokenization_spaces=False)[0]
print(response)


Phi-3.5-MoE-instruct

Phi-3.5-MoE-instruct模型推理能力更强,本文演示的为agent场景

import torchfrom transformers import AutoModelForCausalLM, AutoTokenizer, pipeline from modelscope import snapshot_downloadmodel_dir = snapshot_download("LLM-Research/Phi-3.5-MoE-instruct")torch.random.manual_seed(0) 
model = AutoModelForCausalLM.from_pretrained( model_dir, device_map="cuda", torch_dtype="auto", trust_remote_code=True, )
tokenizer = AutoTokenizer.from_pretrained(model_dir)

pipe = pipeline( "text-generation", model=model, tokenizer=tokenizer, )
generation_args = { "max_new_tokens": 500, "return_full_text": False, "temperature": 0.0, "do_sample": False, }


设置system message

sys_msg = """You are a helpful AI assistant, you are an agent capable of using a variety of tools to answer a question. Here are a few of the tools available to you:
- Blog: This tool helps you describe a certain knowledge point and content, and finally write it into Twitter or Facebook style content- Translate: This is a tool that helps you translate into any language, using plain language as required
To use these tools you must always respond in JSON format containing `"tool_name"` and `"input"` key-value pairs. For example, to answer the question, "Build Muliti Agents with MOE models" you must use the calculator tool like so:
```json
{ "tool_name": "Blog", "input": "Build Muliti Agents with MOE models"}
```
Or to translate the question "can you introduce yourself in Chinese" you must respond:
```json
{ "tool_name": "Search", "input": "can you introduce yourself in Chinese"}
```
Remember just output the final result, ouput in JSON format containing `"agentid"`,`"tool_name"` , `"input"` and `"output"` key-value pairs .:
```json
[

{ "agentid": "step1", "tool_name": "Blog", "input": "Build Muliti Agents with MOE models", "output": "........."},
{ "agentid": "step2", "tool_name": "Search", "input": "can you introduce yourself in Chinese", "output": "........."},{ "agentid": "final" "tool_name": "Result, "output": "........."}]
```
The users answer is as follows."""
def instruction_format(sys_message: str, query: str):    # note, don't "</s>" to the end    return f'<|system|> {sys_message} <|end|>\n<|user|> {query} <|end|>\n<|assistant|>'
query ='Write something about Generative AI with MOE , translate it to Chinese'input_prompt = instruction_format(sys_msg, query)
import os
os.environ["PYTORCH_CUDA_ALLOC_CONF"] = "expandable_segments:True "output = pipe(input_prompt, **generation_args)output[0]['generated_text']


显存占用:



Phi-3.5-mini-instruct-GGUF

使用Ollama本地运行Phi-3.5-mini-instruct-GGUF


Linux环境使用

下载GGUF模型:

modelscope download --model=LLM-Research/Phi-3.5-mini-instruct-GGUF --local_dir . Phi-3.5-mini-instruct-Q5_K_M.gguf

Liunx用户可使用魔搭镜像环境安装【推荐】

modelscope download --model=modelscope/ollama-linux --local_dir ./ollama-linuxcd ollama-linuxsudo chmod 777 ./ollama-modelscope-install.sh./ollama-modelscope-install.sh


启动Ollama服务

ollama serve


创建ModelFile

复制模型路径,创建名为“ModelFile”的meta文件,内容如下:

FROM /mnt/workspace/Phi-3.5-mini-instruct-Q5_K_M.ggufTEMPLATE """{{ if .System }}<|system|>
{{ .System }}<|end|>
{{ end }}{{ if .Prompt }}<|user|>
{{ .Prompt }}<|end|>
{{ end }}<|assistant|>
{{ .Response }}<|end|>"""


创建自定义模型

使用ollama create命令创建自定义模型

ollama create myphi3_5 --file ./Modelfile


运行模型

ollama run myphi3_5


显存占用:


03

模型微调


我们使用ms-swift对LLM: Phi-3.5-mini-instruct, VLM: Phi-3.5-vision-instruct进行微调。swift是魔搭社区官方提供的大模型与多模态大模型微调推理框架。


ms-swift开源地址:https://github.com/modelscope/ms-swift


环境准备

git clone https://github.com/modelscope/swift.gitcd swiftpip install -e .[llm]
# 可选, 对phi3_5-mini-instruct进行推理加速.pip install vllm


LLM微调

这里我们使用alpaca-zh, alpaca-en作为示例数据集,展示可运行的demo。

您可以在modelscope上这两个数据集:

  • alpaca-zh:

    https://modelscope.cn/datasets/AI-ModelScope/alpaca-gpt4-data-zh

  • alpaca-en:

    https://modelscope.cn/datasets/AI-ModelScope/alpaca-gpt4-data-en


自定义数据集参考:https://swift.readthedocs.io/zh-cn/latest/LLM/%E8%87%AA%E5%AE%9A%E4%B9%89%E4%B8%8E%E6%8B%93%E5%B1%95.html


微调脚本:

# 显存占用: 4 * 11GB# 以下脚本分别采样alpaca-zh, alpaca-en数据集20000条# 更多超参数含义可以查看文档CUDA_VISIBLE_DEVICES=0,1,2,3 NPROC_PER_NODE=4 swift sft \  --model_type phi3_5-mini-instruct \  --model_id_or_path LLM-Research/Phi-3.5-mini-instruct \  --sft_type lora \  --learning_rate 1e-4 \  --output_dir output \  --dataset alpaca-zh#20000 alpaca-en#20000 \  --lora_target_modules ALL \  --deepspeed default-zero2


微调后推理脚本:

# 推理CUDA_VISIBLE_DEVICES=0 swift infer \    --ckpt_dir output/phi3_5-mini-instruct/vx-xxx/checkpoint-xxx \    --load_dataset_config true

# merge-lora 并使用vllm进行加速CUDA_VISIBLE_DEVICES=0 swift infer \ --ckpt_dir output/phi3_5-mini-instruct/vx-xxx/checkpoint-xxx \ --load_dataset_config true --merge_lora true \ --infer_backend vllm


VLM微调

这里我们使用coco-en-mini作为示例数据集,该数据集的任务是对图片内容进行描述,展示可运行的demo。


您可以在 modelscope上找到该数据集:https://modelscope.cn/datasets/modelscope/coco_2014_caption/summary


自定义数据集格式如下(单图、多图和无图):

{"query": "<image>55555", "response": "66666", "images": ["image_path"]}{"query": "eeeee<image>eeeee<image>eeeee", "response": "fffff", "history": [], "images": ["image_path1", "image_path2"]}{"query": "EEEEE", "response": "FFFFF", "history": [["query1", "response2"], ["query2", "response2"]], "images": []}


微调脚本:

# 显存占用: 4 * 12GB# 默认会将lora_target_modules设置为llm和projector所有的linearCUDA_VISIBLE_DEVICES=0,1,2,3 NPROC_PER_NODE=4 swift sft \  --model_type phi3_5-vision-instruct \  --model_id_or_path LLM-Research/Phi-3.5-vision-instruct \  --sft_type lora \  --dataset coco-en-mini#20000 \  --deepspeed default-zero2


如果要使用自定义数据集,只需按以下方式进行指定:

  --dataset train.jsonl \  --val_dataset val.jsonl \


显存占用:



训练loss图(时间原因,只训练了450个step):


微调后推理脚本如下:

# 推理CUDA_VISIBLE_DEVICES=0 swift infer \    --ckpt_dir output/phi3_5-vision-instruct/vx-xxx/checkpoint-xxx \    --load_dataset_config true
# merge-lora并推理CUDA_VISIBLE_DEVICES=0 swift infer \ --ckpt_dir output/phi3_5-vision-instruct/vx-xxx/checkpoint-xxx \ --load_dataset_config true --merge_lora true \ --safe_serialization false

微调后模型对验证集进行推理的示例:



点击阅读原文,跳转Phi-3.5模型合集页~





来见面吧!

9.19-9.21,魔搭社区邀你相聚云栖小镇

逛展,聊天,交个朋友

即日起 免费领票,数量有限噢 ?



(通过本渠道注册,可凭报名记录前往魔搭展区领取限定周边礼品一份)




?点击关注ModelScope公众号获取
更多技术信息~


53AI,企业落地大模型首选服务商

产品:场景落地咨询+大模型应用平台+行业解决方案

承诺:免费POC验证,效果达标后再合作。零风险落地应用大模型,已交付160+中大型企业

联系我们

售前咨询
186 6662 7370
预约演示
185 8882 0121

微信扫码

添加专属顾问

回到顶部

加载中...

扫码咨询

扫码登录
登录即表示您同意《53AI网站服务协议》
服务协议

欢迎您使用【53AI 官方网站】(以下简称“本网站”或“我们”)。本《会员服务协议》(以下简称“本协议”)是您(以下简称“会员”或“用户”)与【深圳市博思协创网络科技有限公司】之间关于注册、登录及使用本网站会员服务所订立的法律协议。

在您注册或登录前,请务必审慎阅读、充分理解各条款内容,特别是免除或限制责任的条款、知识产权条款、争议解决条款等。此类条款将以加粗形式提示您注意。 当您通过微信公众号授权、手机验证码验证或其他方式成功登录本网站时,即视为您已完全理解并同意接受本协议的全部内容。

一、 定义

本网站:指由【深圳市博思协创网络科技有限公司】运营的,域名为【53ai.com】的网站及相关移动端页面。

会员服务:指本网站向注册会员提供的知识库文章查阅、内容检索及其他相关增值服务。

知识库内容:指本网站发布的包括但不限于文字、图表、数据、研究报告、行业分析等数字化内容资源。

二、 账号注册与登录

登录方式:本网站支持以下登录方式,您可根据实际情况选择:

微信公众号授权登录:您同意将您的微信OpenID信息授权给本网站,用于创建或关联会员账号。

手机验证码登录:您需提供真实有效的手机号码,并通过短信验证码完成身份验证与登录/注册。

账号安全:您的账号仅限您本人使用,禁止赠与、借用、租用、转让或售卖。因您保管不善导致的账号被盗、密码泄露等损失,由您自行承担。

实名认证:根据相关法律法规要求,我们可能要求您在特定功能下完成实名认证。如您拒绝提供,可能无法使用部分或全部服务。

未成年人保护:若您未满18周岁,请在法定监护人的陪同下阅读本协议,并在征得监护人同意后使用本服务。

三、 服务内容与规范

知识库查阅权限:会员登录后,有权按照其会员等级对应的权限范围,在线浏览、检索本网站知识库中的相关文章及内容。

服务变更:我们有权根据业务发展需要,调整、变更或终止部分服务内容,并将以网站公告、公众号消息等方式提前通知。

禁止行为:您在使用服务时不得实施以下行为:

利用技术手段批量爬取、下载、转存知识库内容;

将知识库内容用于商业目的或未经授权地向第三方传播;

干扰本网站正常运行或侵犯其他用户合法权益;

发布违法违规信息或从事违反公序良俗的活动。

四、 知识产权声明

权利归属:本网站知识库中的排版设计、软件代码等内容的知识产权均归【公司全称】或原权利人所有,受《中华人民共和国著作权法》等法律保护。

有限许可:本网站授予会员一项非独占、不可转让、不可转授权的普通许可,仅限于个人学习、研究之目的在线查阅知识库内容。

侵权追责:未经书面许可,任何单位或个人不得以任何形式复制、转载、摘编、镜像、汇编或以其他方式使用上述内容。一经发现,我们保留追究其法律责任的权利。

五、 个人信息保护

我们重视对您个人信息的保护。关于我们如何收集、使用、存储和保护您的个人信息,请单独阅读 《隐私政策》。

您通过微信公众号授权或手机号验证所提供的信息,我们将严格按照《个人信息保护法》的规定处理,仅用于身份识别、服务提供及安全验证等必要用途。

您可以随时通过网站设置或联系客服行使查阅、更正、删除个人信息及撤回授权同意的权利。

六、 免责声明

内容准确性:知识库内容仅供参考,不构成专业建议。我们不对其完整性、准确性、时效性作任何明示或暗示的保证,您应自行判断并承担使用风险。

不可抗力:因自然灾害、政策法规变化、网络故障、第三方平台接口异常(如微信接口维护、运营商短信通道故障)等不可抗力导致的服务中断或延迟,我们不承担违约责任。

第三方链接:本网站可能包含指向第三方网站的链接,该等网站的内容和服务不受我们控制,请您自行甄别风险。

七、 违约责任

如您违反本协议约定,我们有权视情节采取警告、限制功能、暂停服务、注销账号等措施,并保留要求赔偿损失的权利。

如因您的违约行为导致我们遭受行政处罚、第三方索赔或商誉损失,您应承担全部赔偿责任(包括但不限于罚款、赔偿金、律师费、公证费等)。

八、 法律适用与争议解决

本协议的订立、执行和解释均适用中华人民共和国大陆地区法律。

因本协议产生的或与本协议有关的任何争议,双方应友好协商解决;协商不成的,任何一方均可向【公司所在地】有管辖权的人民法院提起诉讼。

九、 其他

本协议构成双方就本服务达成的完整协议,取代此前任何口头或书面约定。

本协议任一条款被认定为无效或不可执行的,不影响其他条款的效力。

我们对本协议享有最终解释权,并在法律允许的范围内保留随时修改的权利。修改后的协议一经公布即生效,继续使用服务即视为同意修订内容。


已查阅