【peft】huggingface大模型加载多个LoRA并随时切换

news/2024/12/4 6:15:49/

加载多个LoRA并随时切换

参考Multi Adapter support
要求 peft>=0.3.0

用法说明

  1. 在加载第一个适配器时,可以通过 PeftModel.from_pretrained 方法并指定 adapter_name 参数来给它命名。否则,将使用默认的适配器名称 default
  2. 要加载另一个适配器,请使用 PeftModelload_adapter() 方法,例如:model.load_adapter(peft_model_path, adapter_name)
  3. 要切换适配器,请使用 PeftModelset_adapter() 方法,例如:model.set_adapter(adapter_name)
  4. 要禁用适配器,请使用上下文管理器 disable_adapter(),例如:with model.disable_adapter()
  5. 特别适用于LoRA方法:要合并和卸载当前活动的适配器,以便将LoRA权重添加到基础模型权重中,并将注入的LoRA模型删除以恢复具有添加了LoRA权重的Transformers基础模型的模型,请使用 merge_and_unload()方法,例如:model = model.merge_and_unload()

例子

from peft import PeftModel
from transformers import LlamaTokenizer, LlamaForCausalLM, GenerationConfigmodel_name = "decapoda-research/llama-7b-hf"
tokenizer = LlamaTokenizer.from_pretrained(model_name)
model = LlamaForCausalLM.from_pretrained(model_name,load_in_8bit=True,device_map="auto",use_auth_token=True
)
model = PeftModel.from_pretrained(model, "tloen/alpaca-lora-7b", adapter_name="eng_alpaca")
model.load_adapter("22h/cabrita-lora-v0-1", adapter_name="portuguese_alpaca")model.set_adapter("eng_alpaca")
instruction = "Tell me about alpacas."
print(evaluate(instruction))
"""output
The alpaca (Vicugna pacos) is a domesticated species of South American camelid. It resembles a small llama in appearance, but unlike the llama, it is not used as a beast of burden. It is kept primarily for its fiber, which can be spun into yarn. Alpaca fiber is warmer, lighter, and softer than sheep's wool, and is highly valued in the textile industry. The fiber comes in a variety of natural colors, including white, beige, cream, and fawn. It can also be dyed in a wide range of colors.
Alpaca herds can be found in the highlands of Peru, Bolivia, Chile, Ecuador, and Colombia. They are also raised in the United States, Canada, Australia, New Zealand, and Europe. The animals graze on grasses, herbs, and shrubs, and can survive in temperatures as low as -30°F (-34°C). They are social animals, living in herds of up to 20 individuals.
The fiber of the alpaka is used to make clothing
"""model.set_adapter("portuguese_alpaca")
instruction = "Invente uma desculpa criativa pra dizer que não preciso ir à festa."
print(evaluate(instruction))
"""output
"Eu preciso ficar em casa para cuidar de meu gato."
"""with model.disable_adapter():instruction = "Invente uma desculpa criativa pra dizer que não preciso ir à festa."print(evaluate(instruction))
"""output
I'm sorry, but I can't go to the party. I'm sick. I have a cold. I don't feel well. I need to stay at home and rest.
I have a lot of homework to do. My dog ate my homework. My homework is too hard. I didn't have time to do it. It's too late. I forgot about it.
My parents won't let me go. My parents are out of town. They're on vacation. They have to work. They are sick. They need to take care of my brother.
They're not home. They went to the grocery store. They took the car to the mechanic. They had to go to a meeting. They were in a hurry. They forgot about me.
Their car broke down. Their car ran out of gas. They got a flat tire. They couldn't find a parking space. They didn' t have enough money. They lost their wallet.
It's raining. The roads are icy. There's a blizzard. There are too many cars on the road. There was an accident.
"""

http://www.ppmy.cn/news/66583.html

相关文章

Qt--多窗口编程

目录 1. QMessageBox 消息对话框(掌握) 示例代码: dialog.h dialog.cpp dialog.ui 运行结果: 2. 窗口类继承关系 dialog.cpp 3. QMainWindow 主窗口类 3.1 QMenuBar 菜单栏 3.2 QToolBar 工具栏 3.3 QWidget 中心组件 3.4 QStatu…

Java开发手册-9

Java开发手册-9 工程结构服务器 设计规约 工程结构 服务器 【强制】调用远程操作必须有超时设置。 说明:类似于HttpClient的超时设置需要自己明确去设置Timeout。根据经验表明,无数次的故障都是因为没有设置超时时间。【推荐】客户端设置远程接口方法…

从匆匆的一瞥,到两小时泯灭(SQL注入)

从匆匆的一瞥,到两小时泯灭(SQL注入) 惊鸿一瞥用户名提示jsBase64.js文件手搓轮子(python)反复搓轮子(python-tamper) 惊鸿一瞥 昨天晚上分别开了我相识已久的女友,再度回到了单身狗…

银行业数字化运营体系(上):渠道触点矩阵建设

数字化运营体系是构建从获客、激活、留存、营收转化到转介的客户全生命周期的运营体系,推动线上产品和业务运营的数字化与智能化。 随着互联网技术的不断发展,移动设备已经成为人们日常生活中不可或缺的一部分,越来越多的用户在数字化渠道进行…

PostgreSQL中 WAL 和 归档

WAL PostgreSQL中的WAL(Write-Ahead Logging)是一种持久性技术,它将所有对数据库的修改操作记录到一个称为WAL日志的文件中。这使得在发生系统崩溃或意外停机时,可以使用WAL日志来恢复数据库的一致性状态。 归档删除机制是一种自…

如何提升应届生在职场中竞争力的有效方法

背景 在当前就业形势下,应届生面临着激烈的职场竞争。然而,通过采取一系列有效的方法和策略,应届生可以提高自己在职场中的竞争力。本文将探讨一些可供选择的方法和策略,并分析对应届生职场发展起到关键推动和支撑作用的方面。希…

@Autowired和@Resource的区别详解

1. Autowired 配置 首先介绍 Autowired 注解的配置,通过该注解可以实现自动装配 Bean 的依赖。例如以下的 OrderService 类,通过 Autowired 注解将其依赖的 OrderRepository 对象实例化并注入: Service public class OrderService { …

【Linux】安装node-v16.17.0-linux

【Linux】安装node-v16.17.0-linux 1 下载node-v16.17.0-linux-x64.tar.xz 下载地址:https://nodejs.org/zh-cn 2 解压文件 cd 到node-v16.17.0-linux-x64.tar.xz所在的路径 xz -d node-v16.17.0-linux-x64.tar.xz tar -xvf node-v16.17.0-linux-x64.tar 3 软…