models.py 2.7 KB
Newer Older
1
from abc import ABC, abstractmethod
2
from typing import Any, Callable, Dict, Optional, TypeVar
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

from torch import nn

from vllm.logger import init_logger
from vllm.utils import LRUCache

logger = init_logger(__name__)


class AdapterModel(ABC):

    def __init__(self, model_id=None):
        self.id = model_id

    @abstractmethod
    def from_local_checkpoint(cls, model_dir, model_id=None, **kwargs):
        # Common initialization code
        # Load weights or embeddings from local checkpoint
        raise NotImplementedError("Subclasses must implement this method.")


T = TypeVar('T')


27
class AdapterLRUCache(LRUCache[int, T]):
28

29
    def __init__(self, capacity: int, deactivate_fn: Callable[[int], object]):
30
31
32
        super().__init__(capacity)
        self.deactivate_fn = deactivate_fn

33
    def _on_remove(self, key: int, value: Optional[T]):
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
        logger.debug("Removing adapter int id: %d", key)
        self.deactivate_fn(key)
        return super()._on_remove(key, value)


class AdapterModelManager(ABC):

    def __init__(
        self,
        model: nn.Module,
    ):
        """Create a AdapterModelManager and adapter for a given model.
        Args:
            model: the model to be adapted.
        """
        self.model: nn.Module = model
        self._registered_adapters: Dict[int, Any] = {}
        # Dict instead of a Set for compatibility with LRUCache.
        self._active_adapters: Dict[int, None] = {}
        self.adapter_type = 'Adapter'
        self._last_mapping = None

    def __len__(self) -> int:
        return len(self._registered_adapters)

    @property
    @abstractmethod
61
62
    def adapter_slots(self) -> int:
        raise NotImplementedError
63
64
65

    @property
    @abstractmethod
66
67
    def capacity(self) -> int:
        raise NotImplementedError
68
69
70

    @abstractmethod
    def activate_adapter(self, adapter_id: int) -> bool:
71
        raise NotImplementedError
72
73
74

    @abstractmethod
    def deactivate_adapter(self, adapter_id: int) -> bool:
75
        raise NotImplementedError
76
77
78

    @abstractmethod
    def add_adapter(self, adapter: Any) -> bool:
79
        raise NotImplementedError
80
81
82

    @abstractmethod
    def set_adapter_mapping(self, mapping: Any) -> None:
83
        raise NotImplementedError
84
85
86

    @abstractmethod
    def remove_adapter(self, adapter_id: int) -> bool:
87
        raise NotImplementedError
88
89

    @abstractmethod
90
91
    def remove_all_adapters(self) -> None:
        raise NotImplementedError
92
93
94

    @abstractmethod
    def get_adapter(self, adapter_id: int) -> Optional[Any]:
95
        raise NotImplementedError
96
97
98

    @abstractmethod
    def list_adapters(self) -> Dict[int, Any]:
99
        raise NotImplementedError
100
101
102

    @abstractmethod
    def pin_adapter(self, adapter_id: int) -> bool:
103
        raise NotImplementedError