Project Icon

llm-toys

微调小型语言模型实现多任务处理

llm-toys 项目提供适用于释义、语气转换、对话总结和主题生成等任务的小型量化3B和7B语言模型。这些经过微调的模型能在普通消费级硬件上高效运行,并通过简单的安装步骤提升文本处理和生成能力。

llm-toys

Code style: black py_versions

小型(7B及以下)、适用于生产环境的LLM微调模型,用于一系列有用的任务。

支持的任务:改写、改变文章的语气、从对话生成摘要和主题, 检索增强的问答(WIP)

我们在量化的3B和7B模型上进行LoRAs微调。3B模型针对特定任务进行微调,而7B模型则针对所有任务进行微调。

目标是能够在非常普通的消费级硬件上微调和使用所有这些模型。

安装

pip install llm-toys

可能需要CUDA支持的GPU才能工作

如果遇到bitsandbytes出现"安装的bitandbytes版本没有GPU支持"的问题,那么请查看 https://github.com/TimDettmers/bitsandbytes/issues/112

或尝试

cp <path_to_your_venv>/lib/python3.10/site-packages/bitsandbytes/libbitsandbytes_cpu.so <path_to_your_venv>/lib/python3.10/site-packages/bitsandbytes/libbitsandbytes_cuda117.so

请注意,我们使用的是源目录中的transformers和peft包,而不是已安装的包。4bit的bitsandbytes量化仅在transformers和peft的主分支上工作。一旦transformers版本4.31.0和peft版本0.4.0发布到pypi,我们将使用发布的版本。

可用模型

模型大小任务Colab
llm-toys/RedPajama-INCITE-Base-3B-v1-paraphrase-tone3B改写,改变语气Notebook
llm-toys/RedPajama-INCITE-Base-3B-v1-dialogue-summary-topic3B对话摘要和主题生成Notebook
llm-toys/falcon-7b-paraphrase-tone-dialogue-summary-topic7B改写,改变语气,对话摘要和主题生成Notebook

使用方法

任务专用的3B模型

改写

from llm_toys.tasks import Paraphraser

paraphraser = Paraphraser()
paraphraser.paraphrase("Hey, can yuo hepl me cancel my last order?")
# "Could you kindly assist me in canceling my previous order?"

改变语气

paraphraser.paraphrase("Hey, can yuo hepl me cancel my last order?", tone="casual")
# "Hey, could you help me cancel my order?"

paraphraser.paraphrase("Hey, can yuo hepl me cancel my last order?", tone="professional")
# "I would appreciate guidance on canceling my previous order."

paraphraser.paraphrase("Hey, can yuo hepl me cancel my last order?", tone="witty")
# "Hey, I need your help with my last order. Can you wave your magic wand and make it disappear?"

对话摘要和主题生成

from llm_toys.tasks import SummaryAndTopicGenerator

summary_topic_generator = SummaryAndTopicGenerator()
summary_topic_generator.generate_summary_and_topic(
    """
    #Person1#: I'm so excited for the premiere of the latest Studio Ghibli movie!
    #Person2#: What's got you so hyped?
    #Person1#: Studio Ghibli movies are pure magic! The animation, storytelling, everything is incredible.
    #Person2#: Which movie is it?
    #Person1#: It's called "Whisper of the Wind." It's about a girl on a magical journey to save her village.
    #Person2#: Sounds amazing! I'm in for the premiere.
    #Person1#: Great! We're in for a visual masterpiece and a heartfelt story.
    #Person2#: Can't wait to be transported to their world.
    #Person1#: It'll be an unforgettable experience, for sure!
    """.strip()
)
# {"summary": "#Person1# 对最新的吉卜力工作室电影首映感到兴奋。
#              #Person1# 认为动画、故事和感人故事将是难忘的。
#              #Person2# 也对首映感到兴奋。",
#  "topic": "吉卜力工作室电影"}

通用的7B模型

from llm_toys.tasks import GeneralTaskAssitant
from llm_toys.config import TaskType

gta = GeneralTaskAssitant()
gta.complete(TaskType.PARAPHRASE_TONE, "Hey, can yuo hepl me cancel my last order?")
# "Could you assist me in canceling my previous order?"

gta.complete(TaskType.PARAPHRASE_TONE, "Hey, can yuo hepl me cancel my last order?", tone="casual")
# "Hey, can you help me cancel my last order?"

gta.complete(TaskType.PARAPHRASE_TONE, "Hey, can yuo hepl me cancel my last order?", tone="professional")
# "I would appreciate if you could assist me in canceling my previous order."

gta.complete(TaskType.PARAPHRASE_TONE, "Hey, can yuo hepl me cancel my last order?", tone="witty")
# "Oops! Looks like I got a little carried away with my shopping spree. Can you help me cancel my last order?"

chat = """
#Person1#: I'm so excited for the premiere of the latest Studio Ghibli movie!
#Person2#: What's got you so hyped?
#Person1#: Studio Ghibli movies are pure magic! The animation, storytelling, everything is incredible.
#Person2#: Which movie is it?
#Person1#: It's called "Whisper of the Wind." It's about a girl on a magical journey to save her village.
#Person2#: Sounds amazing! I'm in for the premiere.
#Person1#: Great! We're in for a visual masterpiece and a heartfelt story.
#Person2#: Can't wait to be transported to their world.
#Person1#: It'll be an unforgettable experience, for sure!
""".strip()
gta.complete(TaskType.DIALOGUE_SUMMARY_TOPIC, chat)
# {"summary": "#Person1# 告诉 #Person2# 即将上映的吉卜力工作室电影。
#              #Person1# 认为它很神奇,#Person2# 也很期待观看。",
#  "topic": "电影首映"}

训练

数据

  • 改写和改变语气的数据: 包含段落及其改写版本,以及不同语气的段落,如随意、专业和幽默。用于模型改写和改变段落语气。数据是使用gpt-35-turbo生成的。一小部分训练段落还来自quora问题和squad_2数据集。

  • 对话摘要和主题生成的数据: 包含对话及其摘要和主题。训练数据来自Dialogsum数据集训练拆分的约1k条记录。还包含约20个开发拆分样本。在抽样时,优先考虑较长的摘要和主题的数据点。请注意,最终训练数据中有一些(约30个)主题经过手动编辑,因为原始标注的主题只是一个词,不够描述。

示例训练脚本

查看所有选项

python llm_toys/train.py --help

训练一个改写和改变语气的模型

python llm_toys/train.py \
    --task_type paraphrase_tone \
    --model_name meta-llama/Llama-2-7b \
    --max_length 128 \
    --batch_size 8 \
    --gradient_accumulation_steps 1 \
    --learning_rate 1e-4 \
    --num_train_epochs 3 \
    --eval_ratio 0.05

评估

改写和改变语气

WIP

对话摘要和主题生成

在来自Dialogsum test拆分的500条记录上进行评估。

# llm-toys/RedPajama-INCITE-Base-3B-v1-dialogue-summary-topic
{"rouge1": 0.453, "rouge2": 0.197, "rougeL": 0.365, "topic_similarity": 0.888}

# llm-toys/falcon-7b-paraphrase-tone-dialogue-summary-topic
{'rouge1': 0.448, 'rouge2': 0.195, 'rougeL': 0.359, 'topic_similarity': 0.886}

路线图

  • 添加测试。
  • 能够在不重新初始化主干模型和分词器的情况下切换LoRAs(用于任务模型)。
  • 检索增强的问答。
  • 探索3B模型在更多任务中的泛化性。
  • 探索更小的模型。
  • 针对没有测试/评估数据集随手可得的任务的评估策略。
  • 数据收集策略和微调一个用于OpenAI类似"函数调用"的模型
项目侧边栏1项目侧边栏2
推荐项目
Project Cover

豆包MarsCode

豆包 MarsCode 是一款革命性的编程助手,通过AI技术提供代码补全、单测生成、代码解释和智能问答等功能,支持100+编程语言,与主流编辑器无缝集成,显著提升开发效率和代码质量。

Project Cover

AI写歌

Suno AI是一个革命性的AI音乐创作平台,能在短短30秒内帮助用户创作出一首完整的歌曲。无论是寻找创作灵感还是需要快速制作音乐,Suno AI都是音乐爱好者和专业人士的理想选择。

Project Cover

有言AI

有言平台提供一站式AIGC视频创作解决方案,通过智能技术简化视频制作流程。无论是企业宣传还是个人分享,有言都能帮助用户快速、轻松地制作出专业级别的视频内容。

Project Cover

Kimi

Kimi AI助手提供多语言对话支持,能够阅读和理解用户上传的文件内容,解析网页信息,并结合搜索结果为用户提供详尽的答案。无论是日常咨询还是专业问题,Kimi都能以友好、专业的方式提供帮助。

Project Cover

阿里绘蛙

绘蛙是阿里巴巴集团推出的革命性AI电商营销平台。利用尖端人工智能技术,为商家提供一键生成商品图和营销文案的服务,显著提升内容创作效率和营销效果。适用于淘宝、天猫等电商平台,让商品第一时间被种草。

Project Cover

吐司

探索Tensor.Art平台的独特AI模型,免费访问各种图像生成与AI训练工具,从Stable Diffusion等基础模型开始,轻松实现创新图像生成。体验前沿的AI技术,推动个人和企业的创新发展。

Project Cover

SubCat字幕猫

SubCat字幕猫APP是一款创新的视频播放器,它将改变您观看视频的方式!SubCat结合了先进的人工智能技术,为您提供即时视频字幕翻译,无论是本地视频还是网络流媒体,让您轻松享受各种语言的内容。

Project Cover

美间AI

美间AI创意设计平台,利用前沿AI技术,为设计师和营销人员提供一站式设计解决方案。从智能海报到3D效果图,再到文案生成,美间让创意设计更简单、更高效。

Project Cover

AIWritePaper论文写作

AIWritePaper论文写作是一站式AI论文写作辅助工具,简化了选题、文献检索至论文撰写的整个过程。通过简单设定,平台可快速生成高质量论文大纲和全文,配合图表、参考文献等一应俱全,同时提供开题报告和答辩PPT等增值服务,保障数据安全,有效提升写作效率和论文质量。

投诉举报邮箱: service@vectorlightyear.com
@2024 懂AI·鲁ICP备2024100362号-6·鲁公网安备37021002001498号