model.py 3.28 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
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

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

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

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

42
        self.check_initialized()
43

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

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

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

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

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

73
74
75
76
77
78
79
80
        # 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
        )
81

82
83
84
85
86
87
88
        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)
89
        else:
90
            return "", prefix_offset, read_offset
91
92
93
94
95
96
97
98
99
100

    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}"
            )