model.py 3.3 KB
Newer Older
1
import inspect
2
3
import torch

4
from abc import ABC, abstractmethod
5
from typing import List, Tuple, Optional, TypeVar, Type
6
from transformers import PreTrainedTokenizerBase, PretrainedConfig
7

8
from text_generation_server.models.types import Batch, GeneratedText
9
from text_generation_server.pb.generate_pb2 import InfoResponse
10

11
12
B = TypeVar("B", bound=Batch)

13
class Model(ABC):
14
15
    def __init__(
        self,
16
        model: torch.nn.Module,
17
        tokenizer: PreTrainedTokenizerBase,
18
19
        requires_padding: bool,
        dtype: torch.dtype,
20
        device: torch.device,
21
22
        rank: int = 0,
        world_size: int = 1,
23
    ):
24
25
26
        if torch.cuda.is_available():
            torch.cuda.set_per_process_memory_fraction(1.0)

27
        self.model = model.eval()
28
        self.tokenizer = tokenizer
29
        self.all_special_ids = set(tokenizer.all_special_ids)
30
31
        self.requires_padding = requires_padding
        self.dtype = dtype
32
        self.device = device
33
34
        self.rank = rank
        self.world_size = world_size
35
36
37
38
39
40

        self.has_position_ids = (
            inspect.signature(model.forward).parameters.get("position_ids", None)
            is not None
        )

41
        self.check_initialized()
42

43
44
45
46
47
48
49
50
    @property
    def info(self) -> InfoResponse:
        return InfoResponse(
            requires_padding=self.requires_padding,
            dtype=str(self.dtype),
            device_type=self.device.type,
        )

51
    @property
52
    @abstractmethod
53
    def batch_type(self) -> Type[B]:
54
        raise NotImplementedError
55

56
57
58
    @abstractmethod
    def generate_token(self, batch: B) -> Tuple[List[GeneratedText], Optional[B]]:
        raise NotImplementedError
59

60
    def warmup(self, batch: B) -> Optional[int]:
61
        self.generate_token(batch)
62
        return None
63

64
65
66
    def decode_token(
        self,
        all_input_ids: List[int],
67
68
69
        prefix_offset: int = 0,
        read_offset: int = 0,
    ) -> Tuple[str, int, int]:
70
        """Hack to hopefully support generate_stream for the maximum number of tokenizers"""
71

72
73
74
75
76
77
78
79
        # The prefix text is necessary only to defeat cleanup algorithms in the decode
        # which decide to add a space or not depending on the surrounding ids.
        prefix_text = self.tokenizer.decode(
            all_input_ids[prefix_offset:read_offset], skip_special_tokens=False
        )
        new_text = self.tokenizer.decode(
            all_input_ids[prefix_offset:], skip_special_tokens=False
        )
80

81
82
83
84
85
86
87
        if len(new_text) > len(prefix_text) and not new_text.endswith("�"):
            # utf-8 char at the end means it's a potential unfinished byte sequence
            # from byte fallback tokenization.
            # If it's in the middle, it's probably a real invalid id generated
            # by the model
            new_text = new_text[len(prefix_text) :]
            return new_text, read_offset, len(all_input_ids)
88
        else:
89
            return "", prefix_offset, read_offset
90
91
92
93
94
95
96
97
98
99

    def check_initialized(self):
        uninitialized_parameters = []
        for n, p in self.model.named_parameters():
            if p.data.device == torch.device("meta"):
                uninitialized_parameters.append(n)
        if uninitialized_parameters:
            raise RuntimeError(
                f"found uninitialized parameters in model {self.__class__.__name__}: {uninitialized_parameters}"
            )