model.py 20.1 KB
Newer Older
lvhan028's avatar
lvhan028 committed
1
# Copyright (c) OpenMMLab. All rights reserved.
Lyu Han's avatar
Lyu Han committed
2
import dataclasses
AllentDan's avatar
AllentDan committed
3
4
5
from abc import abstractmethod
from typing import List

lvhan028's avatar
lvhan028 committed
6
7
from mmengine import Registry

lvhan028's avatar
lvhan028 committed
8
MODELS = Registry('model', locations=['lmdeploy.model'])
lvhan028's avatar
lvhan028 committed
9
10


Lyu Han's avatar
Lyu Han committed
11
12
13
14
15
16
17
18
19
@dataclasses.dataclass
class SamplingParam:
    top_p: float = 0.8
    top_k: float = None
    temperature: float = 0.8
    repetition_penalty: float = 1.0


@MODELS.register_module(name='internlm')
20
@MODELS.register_module(name='llama')
Lyu Han's avatar
Lyu Han committed
21
@MODELS.register_module(name='base')
22
23
24
class BaseModel:
    """Base model."""

25
26
27
28
29
30
    def __init__(self,
                 session_len=2048,
                 top_p=0.8,
                 top_k=None,
                 temperature=0.8,
                 repetition_penalty=1.0,
Lyu Han's avatar
Lyu Han committed
31
                 capability='chat',
32
33
34
35
36
37
                 **kwargs):
        self.session_len = session_len
        self.top_p = top_p
        self.top_k = top_k
        self.temperature = temperature
        self.repetition_penalty = repetition_penalty
Lyu Han's avatar
Lyu Han committed
38
        self.capability = capability
39

Lyu Han's avatar
Lyu Han committed
40
    def get_prompt(self, prompt, sequence_start=True):
41
42
43
44
45
46
47
48
49
50
        """Return the prompt that is concatenated with other elements in the
        chat template.

        Args:
            prompt (str): user's input prompt
            sequence_start (bool): indicator for the first round chat of a
               session sequence
        Returns:
            str: the concatenated prompt
        """
Lyu Han's avatar
Lyu Han committed
51
52
53
54
55
56
57
58
        if self.capability == 'completion':
            return prompt
        else:
            return self.decorate_prompt(prompt, sequence_start)

    @abstractmethod
    def decorate_prompt(self, prompt, sequence_start):
        pass
59

AllentDan's avatar
AllentDan committed
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
91
92
93
94
95
96
97
98
99
100
101
102
103
    @staticmethod
    def _translate_messages(messages: List):
        """Translate messages into system, user speaking list, assistant
        speaking list.

        Args:
            messages (List): chat history
        Returns:
            Turple: consists of system (str), users (List[str]),
                assistants (List[str])
        """
        system = None
        users = []
        assistants = []
        assert isinstance(messages, List)
        for message in messages:
            msg_role = message['role']
            if msg_role == 'system':
                system = message['content']
            elif msg_role == 'user':
                users.append(message['content'])
            elif msg_role == 'assistant':
                assistants.append(message['content'])
            else:
                raise ValueError(f'Unknown role: {msg_role}')
        assistants.append(None)
        return system, users, assistants

    @abstractmethod
    def messages2prompt(self, messages, sequence_start=True):
        """Return the prompt that is concatenated with other elements in the
        chat template. When messages arg is a string, return
        self.get_prompt(messages). When messages arg is a chat history, return
        translated prompt from chat history.

        Args:
            messages (str | List): user's input prompt
        Returns:
            str: the concatenated prompt
        """
        if isinstance(messages, str):
            return self.get_prompt(messages)
        # chat history processing in derived classes

104
105
106
107
108
    @property
    def stop_words(self):
        """Return the stop-words' token ids."""
        return None

Lyu Han's avatar
Lyu Han committed
109
110
111
112
113
114
115
    @property
    def sampling_param(self):
        return SamplingParam(top_p=self.top_p,
                             top_k=self.top_k,
                             temperature=self.temperature,
                             repetition_penalty=self.repetition_penalty)

116

lvhan028's avatar
lvhan028 committed
117
@MODELS.register_module(name='vicuna')
118
class Vicuna(BaseModel):
lvhan028's avatar
lvhan028 committed
119
    """Chat template of vicuna model."""
lvhan028's avatar
lvhan028 committed
120

121
122
123
124
125
126
127
128
129
130
    def __init__(
            self,
            system="""A chat between a curious user and an artificial intelligence assistant. The assistant gives helpful, detailed, and polite answers to the user's questions. """,  # noqa: E501
            user='USER',
            assistant='ASSISTANT',
            **kwargs):
        super().__init__(**kwargs)
        self.system = system
        self.user = user
        self.assistant = assistant
lvhan028's avatar
lvhan028 committed
131

Lyu Han's avatar
Lyu Han committed
132
    def decorate_prompt(self, prompt, sequence_start=True):
lvhan028's avatar
lvhan028 committed
133
134
135
136
137
138
139
140
141
142
        """Return the prompt that is concatenated with other elements in the
        chat template.

        Args:
            prompt (str): user's input prompt
            sequence_start (bool): indicator for the first round chat of a
               session sequence
        Returns:
            str: the concatenated prompt
        """
Lyu Han's avatar
Lyu Han committed
143
144
        assert self.capability == 'chat', \
            f'{type(self).__name__} has no capability of {self.capability}'
lvhan028's avatar
lvhan028 committed
145
        if sequence_start:
AllentDan's avatar
AllentDan committed
146
            return f'{self.system} {self.user}: {prompt} {self.assistant}: '
lvhan028's avatar
lvhan028 committed
147
        else:
AllentDan's avatar
AllentDan committed
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
            return f'</s>{self.user}: {prompt} {self.assistant}: '

    def messages2prompt(self, messages, sequence_start=True):
        """Return the prompt that is concatenated with other elements in the
        chat template.

        Args:
            messages (str | List): user's input prompt
        Returns:
            str: the concatenated prompt
        """
        if isinstance(messages, str):
            return self.get_prompt(messages, sequence_start)
        system, users, assistants = self._translate_messages(messages)
        system = self.system if not system else system
        ret = system + ' '
        for user, assistant in zip(users, assistants):
            if assistant:
                ret += f'{self.user}: {user} {self.assistant}: {assistant}</s>'
            else:
                ret += f'{self.user}: {user} {self.assistant}: '
        return ret
lvhan028's avatar
lvhan028 committed
170
171


172
173
@MODELS.register_module(name='internlm-chat-7b')
class InternLMChat7B(BaseModel):
lvhan028's avatar
lvhan028 committed
174
    """Chat template of InternLM model."""
lvhan028's avatar
lvhan028 committed
175

176
177
178
179
180
181
182
183
184
185
186
187
188
    def __init__(self,
                 system='',
                 user='<|User|>',
                 eoh='<eoh>',
                 eoa='<eoa>',
                 assistant='<|Bot|>',
                 **kwargs):
        super().__init__(**kwargs)
        self.system = system
        self.user = user
        self.eoh = eoh
        self.eoa = eoa
        self.assistant = assistant
lvhan028's avatar
lvhan028 committed
189

Lyu Han's avatar
Lyu Han committed
190
    def decorate_prompt(self, prompt, sequence_start=True):
lvhan028's avatar
lvhan028 committed
191
192
193
194
195
196
197
198
199
200
        """Return the prompt that is concatenated with other elements in the
        chat template.

        Args:
            prompt (str): user's input prompt
            sequence_start (bool): indicator for the first round chat of a
               session sequence
        Returns:
            str: the concatenated prompt
        """
Lyu Han's avatar
Lyu Han committed
201
202
        assert self.capability == 'chat', \
            f'{type(self).__name__} has no capability of {self.capability}'
lvhan028's avatar
lvhan028 committed
203
        if sequence_start:
204
            return f'<BOS>{self.user}:{prompt}{self.eoh}\n' \
lvhan028's avatar
lvhan028 committed
205
206
                   f'{self.assistant}:'
        else:
207
208
            return f'\n{self.user}:{prompt}{self.eoh}\n' \
                   f'{self.assistant}:'
lvhan028's avatar
lvhan028 committed
209

AllentDan's avatar
AllentDan committed
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
    def messages2prompt(self, messages, sequence_start=True):
        """Return the prompt that is concatenated with other elements in the
        chat template.

        Args:
            messages (str | List): user's input prompt
        Returns:
            str: the concatenated prompt
        """
        if isinstance(messages, str):
            return self.get_prompt(messages, sequence_start)
        system, users, assistants = self._translate_messages(messages)
        ret = '<BOS>'
        for user, assistant in zip(users, assistants):
            if assistant:
                ret += f'{self.user}:{user}{self.eoh}\n{self.assistant}:' \
                       f'{assistant}{self.eoa}'
            else:
                ret += f'{self.user}:{user}{self.eoh}\n{self.assistant}:'
        return ret

lvhan028's avatar
lvhan028 committed
231
232
    @property
    def stop_words(self):
lvhan028's avatar
lvhan028 committed
233
        """Return the stop-words' token ids."""
234
235
236
        return [103027, 103028]


237
238
@MODELS.register_module(name='internlm-chat-7b-8k')
class InternLMChat7B8K(InternLMChat7B):
239

240
241
242
    def __init__(self, session_len=8192, **kwargs):
        super(InternLMChat7B8K, self).__init__(**kwargs)
        self.session_len = session_len
lvhan028's avatar
lvhan028 committed
243
244


245
246
247
@MODELS.register_module(name='baichuan-7b')
class Baichuan7B(BaseModel):

248
249
250
251
252
    def __init__(self, repetition_penalty=1.1, **kwargs):
        super().__init__(**kwargs)
        self.repetition_penalty = repetition_penalty


Lyu Han's avatar
Lyu Han committed
253
254
@MODELS.register_module(name='baichuan2-7b')
class Baichuan2_7B(BaseModel):
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269

    def __init__(self,
                 temperature=0.3,
                 top_k=5,
                 top_p=0.85,
                 repetition_penalty=1.05,
                 **kwargs):
        super().__init__(temperature=temperature,
                         top_k=top_k,
                         top_p=top_p,
                         repetition_penalty=repetition_penalty,
                         **kwargs)
        self.user_token = '<reserved_106>'  # id = 195
        self.assistant_token = '<reserved_107>'  # id = 196

Lyu Han's avatar
Lyu Han committed
270
    def decorate_prompt(self, prompt, sequence_start=True):
271
272
273
274
275
276
277
278
279
280
        """Return the prompt that is concatenated with other elements in the
        chat template.

        Args:
            prompt (str): user's input prompt
            sequence_start (bool): indicator for the first round chat of a
               session sequence
        Returns:
            str: the concatenated prompt
        """
Lyu Han's avatar
Lyu Han committed
281
282
        assert self.capability == 'chat', \
            f'{type(self).__name__} has no capability of {self.capability}'
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
        return f'{self.user_token}{prompt}{self.assistant_token}'

    def messages2prompt(self, messages, sequence_start=True):
        """Return the prompt that is concatenated with other elements in the
        chat template.

        Args:
            messages (str | List): user's input prompt
        Returns:
            str: the concatenated prompt
        """
        if isinstance(messages, str):
            return self.get_prompt(messages, sequence_start)
        system, users, assistants = self._translate_messages(messages)
        ret = ''
        for user, assistant in zip(users, assistants):
            ret += f'{self.user_token}{user}{self.assistant_token}'
            if assistant:
                ret += f'{assistant}'
        return ret


305
306
307
308
309
310
@MODELS.register_module(name='puyu')
class Puyu(BaseModel):
    """Chat template of puyu model.This is only for internal usage in Shanghai
    AI Laboratory."""

    def __init__(self,
liukuikun's avatar
liukuikun committed
311
                 meta_instruction='',
Lyu Han's avatar
Lyu Han committed
312
                 system='',
313
                 eosys='',
liukuikun's avatar
liukuikun committed
314
315
316
317
                 user='',
                 eoh='',
                 assistant='',
                 eoa='',
318
319
                 **kwargs):
        super().__init__(**kwargs)
liukuikun's avatar
liukuikun committed
320
321
        self.meta_instruction = meta_instruction
        self.system = system
322
323
        self.user = user
        self.assistant = assistant
liukuikun's avatar
liukuikun committed
324
325
326
        self.eosys = eosys
        self.eoh = eoh
        self.eoa = eoa
327

Lyu Han's avatar
Lyu Han committed
328
329
330
    def decorate_prompt(self, prompt, sequence_start=True):
        assert self.capability == 'chat', \
            f'{type(self).__name__} has no capability of {self.capability}'
331
        if sequence_start:
liukuikun's avatar
liukuikun committed
332
333
            return f'<BOS>{self.system}{self.meta_instruction}{self.eosys}' \
                   f'{self.user}{prompt}{self.eoh}' \
334
335
                   f'{self.assistant}'
        else:
liukuikun's avatar
liukuikun committed
336
            return f'{self.eoa}{self.user}{prompt}{self.eoh}{self.assistant}'
337

338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
    def messages2prompt(self, messages, sequence_start=True):
        """Return the prompt that is concatenated with other elements in the
        chat template.

        Args:
            messages (str | List): user's input prompt
            sequence_start (bool): flag to start the sequence
        Returns:
            str: the concatenated prompt
        """
        if isinstance(messages, str):
            return self.get_prompt(messages, sequence_start)
        system, users, assistants = self._translate_messages(messages)
        system = self.system if not system else system
        ret = f'<BOS>{system}{self.meta_instruction}{self.eosys}'
        for user, assistant in zip(users, assistants):
            if assistant:
liukuikun's avatar
liukuikun committed
355
356
                ret += f'{self.user}{user}{self.eoh}{self.assistant}' \
                       f'{assistant}{self.eoa}'
357
            else:
liukuikun's avatar
liukuikun committed
358
                ret += f'{self.user}{user}{self.eoh}{self.assistant}'
359
360
        return ret

361
362
363
364
    @property
    def stop_words(self):
        """Return the stop-words' token ids."""
        return [45623]
365
366


q.yao's avatar
q.yao committed
367
@MODELS.register_module(name='llama2')
368
class Llama2(BaseModel):
q.yao's avatar
q.yao committed
369
370
    """Chat template of LLaMA2 model."""

371
372
373
374
375
376
    def __init__(
            self,
            b_inst='[INST]',
            e_inst='[/INST]',
            b_sys='<<SYS>>\n',
            e_sys='\n<</SYS>>\n\n',
Lyu Han's avatar
Lyu Han committed
377
            system="""\
q.yao's avatar
q.yao committed
378
379
You are a helpful, respectful and honest assistant. Always answer as helpfully as possible, while being safe. Your answers should not include any harmful, unethical, racist, sexist, toxic, dangerous, or illegal content. Please ensure that your responses are socially unbiased and positive in nature.

380
381
382
383
384
385
386
387
If a question does not make any sense, or is not factually coherent, explain why instead of answering something not correct. If you don't know the answer to a question, please don't share false information.""",  # noqa: E501
            session_len=4096,
            **kwargs):
        super().__init__(**kwargs)
        self.b_inst = b_inst
        self.e_inst = e_inst
        self.b_sys = b_sys
        self.e_sys = e_sys
Lyu Han's avatar
Lyu Han committed
388
        self.default_sys_prompt = system
389
        self.session_len = session_len
q.yao's avatar
q.yao committed
390

Lyu Han's avatar
Lyu Han committed
391
    def decorate_prompt(self, prompt, sequence_start=True):
q.yao's avatar
q.yao committed
392
393
394
395
396
397
398
399
400
401
        """Return the prompt that is concatenated with other elements in the
        chat template.

        Args:
            prompt (str): user's input prompt
            sequence_start (bool): indicator for the first round chat of a
               session sequence
        Returns:
            str: the concatenated prompt
        """
Lyu Han's avatar
Lyu Han committed
402
403
        assert self.capability == 'chat', \
            f'{type(self).__name__} has no capability of {self.capability}'
q.yao's avatar
q.yao committed
404
405
406
407
408
409
410
        if sequence_start:
            return f'<BOS>{self.b_inst} ' \
                   f'{self.b_sys} {self.default_sys_prompt} {self.e_sys}' \
                   f'{prompt} {self.e_inst} '

        return f'{self.b_inst} {prompt} {self.e_inst} '

AllentDan's avatar
AllentDan committed
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
    def messages2prompt(self, messages, sequence_start=True):
        """Return the prompt that is concatenated with other elements in the
        chat template.

        Args:
            messages (str | List): user's input prompt
        Returns:
            str: the concatenated prompt
        """
        if isinstance(messages, str):
            return self.get_prompt(messages, sequence_start)
        system, users, assistants = self._translate_messages(messages)
        system = self.default_sys_prompt if not system else system
        ret = f'<BOS>{self.b_inst} {self.b_sys} {system} {self.e_sys}'
        for i, (user, assistant) in enumerate(zip(users, assistants)):
            if i != 0:
                ret += f'{self.b_inst} '
            if assistant:
                ret += f'{user} {self.e_inst} {assistant}'
            else:
                ret += f'{user} {self.e_inst} '
        return ret

q.yao's avatar
q.yao committed
434

435
436
437
438
@MODELS.register_module(name='qwen-7b')
class Qwen7BChat(BaseModel):
    """Chat template for Qwen-7B-Chat."""

439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
    def __init__(self,
                 session_len=8192,
                 top_p=0.5,
                 top_k=40,
                 temperature=1.0,
                 im_start='<|im_start|>',
                 im_end='<|im_end|>',
                 system='You are a helpful assistant.',
                 **kwargs):
        super().__init__(**kwargs)
        self.session_len = session_len
        self.top_p = top_p
        self.top_k = top_k
        self.temperature = temperature

        self.im_start = im_start
        self.im_end = im_end
        self.system = system
457

Lyu Han's avatar
Lyu Han committed
458
459
460
    def decorate_prompt(self, prompt, sequence_start=True):
        assert self.capability == 'chat', \
            f'{type(self).__name__} has no capability of {self.capability}'
461
462
463
464
465
466
467
468
        if sequence_start:
            return f'{self.im_start}system\n{self.system}{self.im_end}' \
                   f'\n{self.im_start}user\n{prompt}{self.im_end}' \
                   f'\n{self.im_start}assistant\n'

        return f'\n{self.im_start}user\n{prompt}{self.im_end}' \
               f'\n{self.im_start}assistant\n'

469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
    def messages2prompt(self, messages, sequence_start=True):
        """Return the prompt that is concatenated with other elements in the
        chat template.

        Args:
            messages (str | List): user's input prompt
        Returns:
            str: the concatenated prompt
        """
        if isinstance(messages, str):
            return self.get_prompt(messages, sequence_start)
        system, users, assistants = self._translate_messages(messages)
        system = self.system if not system else system
        ret = f'{self.im_start}system\n{system}{self.im_end}'
        for user, assistant in zip(users, assistants):
            if assistant:
                ret += f'\n{self.im_start}user\n{user}{self.im_end}' \
                       f'\n{self.im_start}assistant\n{assistant}'
            else:
                ret += f'\n{self.im_start}user\n{user}{self.im_end}' \
                       f'\n{self.im_start}assistant\n'
        return ret

492
493
494
495
496
497
    @property
    def stop_words(self):
        """Return the stop-words' token ids."""
        return [151645]  # <|im_end|>


Lyu Han's avatar
Lyu Han committed
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
@MODELS.register_module(name='codellama')
class CodeLlama(Llama2):

    def __init__(self,
                 system='',
                 session_len=4096,
                 suffix_first=False,
                 **kwargs):
        super().__init__(**kwargs)
        caps = ['completion', 'infilling', 'chat', 'python']
        assert self.capability in caps, \
            f'{self.capability} is not supported. ' \
            f'The supported capabilities are: {caps}'
        self.default_sys_prompt = system
        self.session_len = session_len
        self.suffix_first = suffix_first

        # The following sampling parameters refers to https://github.com/facebookresearch/codellama # noqa: E501
        if self.capability == 'completion' or self.capability == 'python':
            self.top_p = kwargs.get('top_p', 0.9)
            self.temperature = kwargs.get('temperature', 0.2)
        if self.capability == 'chat':
            self.top_p = kwargs.get('top_p', 0.95)
            self.temperature = kwargs.get('temperature', 0.2)
        elif self.capability == 'infilling':
            self.top_p = kwargs.get('top_p', 0.9)
            self.temperature = kwargs.get('temperature', 0.0)

    def decorate_prompt(self, prompt, sequence_start=True):
        if self.capability == 'infilling':
            return self._infill_prompt(prompt)
        elif self.capability == 'chat':
            return self._get_prompt(prompt, sequence_start)
        else:  # python speicalist
            return prompt

    def _infill_prompt(self, prompt):
        prefix, suffix = prompt.split('<FILL>')
        if self.suffix_first:
            # format as "<PRE> <SUF>{suf} <MID> {pre}"
            prompt = f'<BOS><PRE> <SUF>{suffix} <MID> {prefix}'
        else:
            # format as "<PRE> {pre} <SUF>{suf} <MID>"
            prompt = f'<BOS><PRE> {prefix} <SUF>{suffix} <MID>'
        return prompt

    def _get_prompt(self, prompt, sequence_start):
        prompt = prompt.strip()
        if sequence_start:
            return f'<BOS>{self.b_inst} ' \
                   f'{self.b_sys}{self.default_sys_prompt}{self.e_sys}' \
                   f'{prompt} {self.e_inst}'

        return f'{self.b_inst} {prompt} {self.e_inst}'

    @property
    def stop_words(self):
        if self.capability == 'infilling':
            # EOT ID
            return [32010]
        else:
            return None

    def messages2prompt(self, messages, sequence_start=True):
        assert self.capability == 'chat', \
            f'codellama message2prompt only supports chat mode ' \
            f'but got {self.cap} mode'
        return super().messages2prompt(messages, sequence_start)


lvhan028's avatar
lvhan028 committed
568
569
570
571
def main(model_name: str = 'test'):
    assert model_name in MODELS.module_dict.keys(), \
        f"'{model_name}' is not supported. " \
        f'The supported models are: {MODELS.module_dict.keys()}'
572
    model = MODELS.get(model_name)()
lvhan028's avatar
lvhan028 committed
573
574
    prompt = model.get_prompt(prompt='hi')
    print(prompt)
575
    print(f'session_len: {model.session_len}')
lvhan028's avatar
lvhan028 committed
576
577
578
579
580


if __name__ == '__main__':
    import fire
    fire.Fire(main)