|
|
|
|
| """Implementation of the paper:
|
|
|
| LLaMA-Adapter: Efficient Fine-tuning of Language Models with Zero-init Attention
|
| https://arxiv.org/abs/2303.16199
|
|
|
| Port for LitGPT
|
| """
|
|
|
| from dataclasses import dataclass
|
| from typing import Any
|
|
|
| import torch
|
| import torch.nn as nn
|
| from typing_extensions import Self
|
|
|
| from litgpt.config import Config as BaseConfig
|
| from litgpt.model import GPT as BaseModel
|
| from litgpt.model import Block as BaseBlock
|
| from litgpt.model import CausalSelfAttention as BaseCausalSelfAttention
|
|
|
|
|
| @dataclass
|
| class Config(BaseConfig):
|
| adapter_prompt_length: int = 10
|
| adapter_start_layer: int = 2
|
|
|
|
|
| class GPT(BaseModel):
|
|
|
| def __init__(self, config: Config) -> None:
|
| nn.Module.__init__(self)
|
| assert config.padded_vocab_size is not None
|
| self.config = config
|
|
|
| self.lm_head = nn.Linear(config.n_embd, config.padded_vocab_size, bias=config.lm_head_bias)
|
| self.transformer = nn.ModuleDict(
|
| dict(
|
| wte=nn.Embedding(config.padded_vocab_size, config.n_embd),
|
| h=nn.ModuleList(Block(config, block_idx) for block_idx in range(config.n_layer)),
|
| ln_f=config.norm_class(config.n_embd, eps=config.norm_eps),
|
| )
|
| )
|
| self.mask_cache: torch.Tensor | None = None
|
| self.max_seq_length = self.config.block_size
|
|
|
| @classmethod
|
| def from_name(cls, name: str, **kwargs: Any) -> Self:
|
| return cls(Config.from_name(name, **kwargs))
|
|
|
| def _init_weights(self, module: nn.Module) -> None:
|
| """Meant to be used with `gpt.apply(gpt._init_weights)`. Unused method left for completeness."""
|
| super()._init_weights(module)
|
| if isinstance(module, CausalSelfAttention):
|
| module.reset_parameters()
|
|
|
|
|
| class Block(BaseBlock):
|
| def __init__(self, config: Config, block_idx: int) -> None:
|
| super().__init__(config, block_idx)
|
| self.attn = CausalSelfAttention(config, block_idx)
|
|
|
|
|
| class CausalSelfAttention(BaseCausalSelfAttention):
|
| """A modification of `litgpt.model.CausalSelfAttention` that adds the attention
|
| over the adaption prompt."""
|
|
|
| def __init__(self, config: Config, block_idx: int) -> None:
|
| super().__init__(config, block_idx)
|
| if block_idx >= config.adapter_start_layer:
|
|
|
| self.adapter_wte = nn.Embedding(config.adapter_prompt_length, config.n_embd)
|
|
|
| self.gating_factor = torch.nn.Parameter(torch.zeros(1, 1, config.n_head, 1))
|
|
|
| self.adapter_kv_cache: tuple[torch.Tensor, torch.Tensor] | None = None
|
|
|
| def scaled_dot_product_attention(
|
| self, q: torch.Tensor, k: torch.Tensor, v: torch.Tensor, mask: torch.Tensor | None = None
|
| ) -> torch.Tensor:
|
| y = super().scaled_dot_product_attention(q, k, v, mask)
|
| if self.block_idx < self.config.adapter_start_layer:
|
| return y
|
|
|
| aT = self.config.adapter_prompt_length
|
| if self.adapter_kv_cache is not None:
|
|
|
|
|
| ak, av = self.adapter_kv_cache
|
| else:
|
| prefix = self.adapter_wte.weight.reshape(1, aT, self.config.n_embd)
|
| aqkv = self.qkv(prefix)
|
| q_per_kv = self.config.n_head // self.config.n_query_groups
|
| aqkv = aqkv.view(1, aT, self.config.n_query_groups, q_per_kv + 2, self.config.head_size)
|
| aqkv = aqkv.permute(0, 2, 3, 1, 4)
|
| _, ak, av = aqkv.split((q_per_kv, 1, 1), dim=2)
|
| if self.config.n_query_groups != 1:
|
|
|
| ak = ak.repeat_interleave(q_per_kv, dim=2)
|
| av = av.repeat_interleave(q_per_kv, dim=2)
|
| ak = ak.view(1, -1, aT, self.config.head_size)
|
| av = av.view(1, -1, aT, self.config.head_size)
|
| self.adapter_kv_cache = (ak, av)
|
|
|
| T = q.size(2)
|
| amask = torch.ones(T, aT, dtype=torch.bool, device=q.device)
|
| ay = super().scaled_dot_product_attention(q, ak, av, amask)
|
| return y + self.gating_factor * ay
|
|
|
| def reset_parameters(self) -> None:
|
| if hasattr(self, "gating_factor"):
|
| torch.nn.init.zeros_(self.gating_factor)
|
|
|
| def _load_from_state_dict(self, state_dict: dict, prefix: str, *args: Any, **kwargs: Any) -> None:
|
| """For compatibility with older checkpoints."""
|
| if (key := prefix + "gating_factor") in state_dict and state_dict[key].size(1) == self.config.n_head:
|
| state_dict[key] = state_dict[key].permute(0, 2, 1, 3)
|
| super()._load_from_state_dict(state_dict, prefix, *args, **kwargs)
|
|
|
|
|
| def mark_only_adapter_as_trainable(model: GPT) -> None:
|
| """Sets `requires_grad=False` for all non-adapter weights."""
|
| for name, param in model.named_parameters():
|
| param.requires_grad = adapter_filter(name, param)
|
|
|
|
|
| def adapter_filter(key: str, value: Any) -> bool:
|
| return "adapter_wte" in key or "gating_factor" in key
|
|
|