随着生成式人工智能 (Generative AI,GenAI) 革命的全面推进,运用 Llama 2 等开源 transformer 模型生成文本已成为新风尚。人工智能爱好者及开发人员正在寻求运用此类模型的生成能力来赋能不同的场景及运用。本文展示了怎么基于 Optimum Habana 以及咱们实现的流水线类轻松运用 Llama 2 系列模型 (7b、13b 及 70b) 生成文本 – 仅需几行代码,即可运转!
咱们规划并实现了一个旨在为用户供给极大的灵活性和易用性流水线类。它供给了高层级的抽象以支撑包含预处理和后处理在内的端到端文本生成。同时,用户也可以通过多种办法运用该流水线类 – 你可以在 Optimum Habana 代码库中直接运转 run_pipeline.py
脚本,也可以在你自己的 python 脚本中调用该流水线类,还可以用该流水线类来初始化 LangChain。
准备作业
因为 Llama 2 模型实施的是答应式拜访,因而如果你没有请求拜访权限,需求首要请求拜访权限。办法如下: 首要,拜访 Meta 网站 并承受相应条款。一旦 Meta 颁发你拜访权限 (可能需求一两天),你需求运用你当时运用的电子邮箱地址请求 Hugging Face Llama 2 模型库 的拜访权限。
获取拜访权限后,可通过运转以下指令登录你的 Hugging Face 帐户 (此时会需求一个拜访令牌,你可从 你的用户个人资料页面 上获取):
huggingface-cli login
你还需求装置最新版别的 Optimum Habana 并拉取其代码库以获取后续要运用的脚本。指令如下:
pip install optimum-habana==1.10.4
git clone -b v1.10-release https://github.com/huggingface/optimum-habana.git
如果想运转分布式推理,还需求根据你的 SynapseAI 版别装置对应的 DeepSpeed。在本例中,我运用的是 SynapseAI 1.14.0。
pip install git+https://github.com/HabanaAI/DeepSpeed.git@1.14.0
至此,准备结束!
办法一: 通过指令直接运用流水线脚本
首要,运用如下指令进入 optimum-habana
的相应目录,然后依照 README
中的阐明更新 PYTHONPATH
。
cd optimum-habana/examples/text-generation
pip install -r requirements.txt
cd text-generation-pipeline
如果你想用自己的提示生成文本序列,下面给出了一个示例:
python run_pipeline.py
--model_name_or_path meta-llama/Llama-2-7b-hf
--use_hpu_graphs
--use_kv_cache
--max_new_tokens 100
--do_sample
--prompt "Here is my prompt"
你还可以传入多个提示作为输入,并更改生成的温度或 top_p
值,如下所示:
python run_pipeline.py
--model_name_or_path meta-llama/Llama-2-13b-hf
--use_hpu_graphs
--use_kv_cache
--max_new_tokens 100
--do_sample
--temperature 0.5
--top_p 0.95
--prompt "Hello world" "How are you?"
如果想用 Llama-2-70b 等大尺度模型生成文本,下面给出了一个用 DeepSpeed 发动流水线的示例指令:
python ../../gaudi_spawn.py
--use_deepspeed
--world_size 8 run_pipeline.py
--model_name_or_path meta-llama/Llama-2-70b-hf
--max_new_tokens 100
--bf16
--use_hpu_graphs
--use_kv_cache
--do_sample
--temperature 0.5
--top_p 0.95
--prompt "Hello world" "How are you?" "Here is my prompt" "Once upon a time"
办法二: 在自己的 Python 脚本中调用流水线类
你还可以在自己的 Python 脚本中调用咱们实现的流水线类,如下例所示。你需求在 optimum-habana/examples/text-generation/text- generation-pipeline
目录下运转该示例脚本 [译者注: 原因是 GaudiTextGenerationPipeline
这个类的界说在该目录的 pipeline.py
中]。
import argparse
import logging
from pipeline import GaudiTextGenerationPipeline
from run_generation import setup_parser
# Define a logger
logging.basicConfig(
format="%(asctime)s - %(levelname)s - %(name)s - %(message)s",
datefmt="%m/%d/%Y %H:%M:%S",
level=logging.INFO,
)
logger = logging.getLogger(__name__)
# Set up an argument parser
parser = argparse.ArgumentParser()
args = setup_parser(parser)
# Define some pipeline arguments. Note that --model_name_or_path is a required argument for this script
args.num_return_sequences = 1
args.model_name_or_path = "meta-llama/Llama-2-7b-hf"
args.max_new_tokens = 100
args.use_hpu_graphs = True
args.use_kv_cache = True
args.do_sample = True
# Initialize the pipeline
pipe = GaudiTextGenerationPipeline(args, logger)
# You can provide input prompts as strings
prompts = ["He is working on", "Once upon a time", "Far far away"]
# Generate text with pipeline
for prompt in prompts:
print(f"Prompt: {prompt}")
output = pipe(prompt)
print(f"Generated Text: {repr(output)}")
你需求用
python <name_of_script>.py --model_name_or_path a_model_name
指令来运转上述脚本,其中--model_name_or_path
是必需的参数。当然,你也可以在代码中直接更改模型名称 (如上述 Python 代码片段所示)。
上述代码段表明咱们实现的流水线类 GaudiTextGenerationPipeline
会对输入字符串履行生成文本所需的全部操作,包含数据预处理及后处理在内。
办法二: 在 LangChain 中运用流水线类
如果在构造时传入 use_with_langchain
参数的话,咱们的文本生成流水线还可以作为 LangChain 的兼容组件运用。首要,依照如下方法装置 LangChain:
pip install langchain==0.0.191
下面给出了一个怎么在 LangChain 中运用咱们的流水线类的代码示例。
import argparse
import logging
from langchain.llms import HuggingFacePipeline
from langchain.prompts import PromptTemplate
from langchain.chains import LLMChain
from pipeline import GaudiTextGenerationPipeline
from run_generation import setup_parser
# Define a logger
logging.basicConfig(
format="%(asctime)s - %(levelname)s - %(name)s - %(message)s",
datefmt="%m/%d/%Y %H:%M:%S",
level=logging.INFO,
)
logger = logging.getLogger(__name__)
# Set up an argument parser
parser = argparse.ArgumentParser()
args = setup_parser(parser)
# Define some pipeline arguments. Note that --model_name_or_path is a required argument for this script
args.num_return_sequences = 1
args.model_name_or_path = "meta-llama/Llama-2-13b-chat-hf"
args.max_input_tokens = 2048
args.max_new_tokens = 1000
args.use_hpu_graphs = True
args.use_kv_cache = True
args.do_sample = True
args.temperature = 0.2
args.top_p = 0.95
# Initialize the pipeline
pipe = GaudiTextGenerationPipeline(args, logger, use_with_langchain=True)
# Create LangChain object
llm = HuggingFacePipeline(pipeline=pipe)
template = """Use the following pieces of context to answer the question at the end. If you don't know the answer,
just say that you don't know, don't try to make up an answer.
Context: Large Language Models (LLMs) are the latest models used in NLP.
Their superior performance over smaller models has made them incredibly
useful for developers building NLP enabled applications. These models
can be accessed via Hugging Face's `transformers` library, via OpenAI
using the `openai` library, and via Cohere using the `cohere` library.
Question: {question}
Answer: """
prompt = PromptTemplate(input_variables=["question"], template=template)
llm_chain = LLMChain(prompt=prompt, llm=llm)
# Use LangChain object
question = "Which libraries and model providers offer LLMs?"
response = llm_chain(prompt.format(question=question))
print(f"Question 1: {question}")
print(f"Response 1: {response['text']}")
question = "What is the provided context about?"
response = llm_chain(prompt.format(question=question))
print(f"nQuestion 2: {question}")
print(f"Response 2: {response['text']}")
该流水线类当前仅在 LangChain 0.0.191 版上验证通过,其他版别可能不兼容。
总结
咱们在英特尔 Gaudi 2 AI 加速器上实现了一个自界说的文本生成流水线,其可承受单个或多个提示作为输入。该流水线类灵活支撑各种模型尺度及各种影响文本生成质量参数。此外,不管是直接运用仍是将它刺进你自己的脚本都十分简单,并且其还与 LangChain 兼容。
运用预练习模型需恪守第三方答应,如 “Llama 2 社区答应协议”(LLAMAV2)。有关 LLAMA2 模型的预期用处有哪些、哪些行为会被视为乱用或超范围运用、预期运用者是谁以及其他条款,请仔细阅读此 链接 中的阐明。用户需自主承当恪守任何第三方答应的职责和义务,Habana Labs 不承当任何与用户运用或恪守第三方答应相关的职责。为了可以运转像
Llama-2-70b-hf
这样的受限模型,你需求:
- 有一个 Hugging Face 帐户
- 赞同 HF Hub 上模型卡中的模型运用条款
- 设好拜访令牌
- 运用 HF CLI 登录你的帐户,即在发动脚本之前运转
huggingface-cli login
英文原文: hf.co/blog/textge…
原文作者: Siddhant Jagtap
译者: Matrix Yao (姚伟峰),英特尔深度学习工程师,作业方向为 transformer-family 模型在各模态数据上的运用及大规模模型的练习推理。