serving.md 2.68 KB
Newer Older
lvhan028's avatar
lvhan028 committed
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
## 部署 [LLaMA-2](https://github.com/facebookresearch/llama) 服务

请从[这里](https://huggingface.co/meta-llama) 下载 llama2 模型,参考如下命令部署服务:

<details open>
<summary><b>7B</b></summary>

```shell
python3 -m lmdeploy.serve.turbomind.deploy llama2 /path/to/llama-2-7b-chat-hf
bash workspace/service_docker_up.sh
```

</details>

<details open>
<summary><b>13B</b></summary>

```shell
python3 -m lmdeploy.serve.turbomind.deploy llama2 /path/to/llama-2-13b-chat-hf --tp 2
bash workspace/service_docker_up.sh
```

</details>

<details open>
<summary><b>70B</b></summary>

```shell
python3 -m lmdeploy.serve.turbomind.deploy llama2 /path/to/llama-2-70b-chat-hf --tp 8
bash workspace/service_docker_up.sh
```

</details>

lvhan028's avatar
lvhan028 committed
37
38
39
40
41
42
43
44
## 部署 [LLaMA](https://github.com/facebookresearch/llama) 服务

请填写[这张表](https://docs.google.com/forms/d/e/1FAIpQLSfqNECQnMkycAp2jP4Z9TFX0cGR4uf7b_fBxjY_OjhJILlKGA/viewform),获取 LLaMA 模型权重

<details open>
<summary><b>7B</b></summary>

```shell
45
python3 -m lmdeploy.serve.turbomind.deploy llama /path/to/llama-7b llama \
lvhan028's avatar
lvhan028 committed
46
47
48
49
50
51
52
53
54
55
    --tokenizer_path /path/to/tokenizer/model
bash workspace/service_docker_up.sh
```

</details>

<details open>
<summary><b>13B</b></summary>

```shell
56
python3 -m lmdeploy.serve.turbomind.deploy llama /path/to/llama-13b llama \
lvhan028's avatar
lvhan028 committed
57
58
59
60
61
62
63
64
65
66
    --tokenizer_path /path/to/tokenizer/model --tp 2
bash workspace/service_docker_up.sh
```

</details>

<details open>
<summary><b>30B</b></summary>

```shell
67
python3 -m lmdeploy.serve.turbomind.deploy llama /path/to/llama-30b llama \
lvhan028's avatar
lvhan028 committed
68
69
70
71
72
73
74
75
76
77
    --tokenizer_path /path/to/tokenizer/model --tp 4
bash workspace/service_docker_up.sh
```

</details>

<details open>
<summary><b>65B</b></summary>

```shell
78
python3 -m lmdeploy.serve.turbomind.deploy llama /path/to/llama-65b llama \
lvhan028's avatar
lvhan028 committed
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
    --tokenizer_path /path/to/tokenizer/model --tp 8
bash workspace/service_docker_up.sh
```

</details>

### 部署 [Vicuna](https://lmsys.org/blog/2023-03-30-vicuna/) 服务

<details open>
<summary><b>7B</b></summary>

```shell
python3 -m pip install fschat
python3 -m fastchat.model.apply_delta \
  --base-model-path /path/to/llama-7b \
  --target-model-path /path/to/vicuna-7b \
  --delta-path lmsys/vicuna-7b-delta-v1.1

97
python3 -m lmdeploy.serve.turbomind.deploy vicuna /path/to/vicuna-7b
lvhan028's avatar
lvhan028 committed
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
bash workspace/service_docker_up.sh
```

</details>

<details open>
<summary><b>13B</b></summary>

```shell
python3 -m pip install fschat
python3 -m fastchat.model.apply_delta \
  --base-model-path /path/to/llama-13b \
  --target-model-path /path/to/vicuna-13b \
  --delta-path lmsys/vicuna-13b-delta-v1.1

113
python3 -m lmdeploy.serve.turbomind.deploy vicuna /path/to/vicuna-13b
lvhan028's avatar
lvhan028 committed
114
115
116
117
bash workspace/service_docker_up.sh
```

</details>