File size: 3,196 Bytes
820a036 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 |
# W4A16 LLM 模型部署
LMDeploy 支持 4bit 权重模型的推理,**对 NVIDIA 显卡的最低要求是 sm80**。
在推理之前,请确保安装了 lmdeploy,版本 >= v0.0.14
```shell
pip install 'lmdeploy>=0.0.14'
```
## 4bit 权重模型推理
你可以直接从 LMDeploy 的 [model zoo](https://huggingface.co/lmdeploy) 下载已经量化好的 4bit 权重模型,直接使用下面的命令推理。也可以根据["4bit 权重量化"](#4bit-权重量化)章节的内容,把 16bit 权重量化为 4bit 权重,然后再按下述说明推理
以 4bit 的 Qwen-Chat-14B 模型为例,可以从 model zoo 直接下载:
```shell
git-lfs install
git clone https://huggingface.co/lmdeploy/qwen-chat-14b-4bit
```
执行以下命令,即可在终端与模型对话:
```shell
## 转换模型的layout,存放在默认路径 ./workspace 下
lmdeploy convert \
--model-name qwen-14b \
--model-path ./qwen-chat-14b-4bit \
--model-format awq \
--group-size 128
## 推理
lmdeploy chat ./workspace
```
## 启动 gradio 服务
如果想通过 webui 与模型对话,请执行以下命令启动 gradio 服务
```shell
lmdeploy serve gradio ./workspace --server_name {ip_addr} --server_port {port}
```
然后,在浏览器中打开 http://{ip_addr}:{port},即可在线对话
## 推理速度
我们在 NVIDIA GeForce RTX 4090 上使用 [profile_generation.py](https://github.com/InternLM/lmdeploy/blob/main/benchmark/profile_generation.py),分别测试了 4-bit Llama-2-7B 和 Llama-2-13B 模型的 token 生成速度。测试配置为 batch size = 1,(prompt_tokens, completion_tokens) = (1, 512)
| model | llm-awq | mlc-llm | turbomind |
| ----------- | ------- | ------- | --------- |
| Llama 2 7B | 112.9 | 159.4 | 206.4 |
| Llama 2 13B | N/A | 90.7 | 115.8 |
```shell
python benchmark/profile_generation.py \
./workspace \
--concurrency 1 --input_seqlen 1 --output_seqlen 512
```
## 4bit 权重量化
4bit 权重量化包括 2 步:
- 生成量化参数
- 根据量化参数,量化模型权重
### 第一步:生成量化参数
```shell
lmdeploy lite calibrate \
--model $HF_MODEL \
--calib_dataset 'c4' \ # 校准数据集,支持 c4, ptb, wikitext2, pileval
--calib_samples 128 \ # 校准集的样本数,如果显存不够,可以适当调小
--calib_seqlen 2048 \ # 单条的文本长度,如果显存不够,可以适当调小
--work_dir $WORK_DIR \ # 保存 Pytorch 格式量化统计参数和量化后权重的文件夹
```
### 第二步:量化权重模型
LMDeploy 使用 AWQ 算法对模型权重进行量化。在执行下面的命令时,需要把步骤1的`$WORK_DIR`传入。量化结束后,权重文件也会存放在这个目录中。然后就可以根据 ["4bit权重模型推理"](#4bit-权重模型推理)章节的说明,进行模型推理。
```shell
lmdeploy lite auto_awq \
--model $HF_MODEL \
--w_bits 4 \ # 权重量化的 bit 数
--w_group_size 128 \ # 权重量化分组统计尺寸
--work_dir $WORK_DIR \ # 步骤 1 保存量化参数的目录
``` |