lora.py 9.04 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Copyright 2023 The HuggingFace Team. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

from typing import Optional

Patrick von Platen's avatar
Patrick von Platen committed
17
import torch
18
import torch.nn.functional as F
19
20
from torch import nn

21
from ..loaders import PatchedLoraProjection, text_encoder_attn_modules, text_encoder_mlp_modules
Patrick von Platen's avatar
Patrick von Platen committed
22
23
24
25
26
from ..utils import logging


logger = logging.get_logger(__name__)  # pylint: disable=invalid-name

27

28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
def adjust_lora_scale_text_encoder(text_encoder, lora_scale: float = 1.0, use_peft_backend: bool = False):
    if use_peft_backend:
        from peft.tuners.lora import LoraLayer

        for module in text_encoder.modules():
            if isinstance(module, LoraLayer):
                module.scaling[module.active_adapter] = lora_scale
    else:
        for _, attn_module in text_encoder_attn_modules(text_encoder):
            if isinstance(attn_module.q_proj, PatchedLoraProjection):
                attn_module.q_proj.lora_scale = lora_scale
                attn_module.k_proj.lora_scale = lora_scale
                attn_module.v_proj.lora_scale = lora_scale
                attn_module.out_proj.lora_scale = lora_scale

        for _, mlp_module in text_encoder_mlp_modules(text_encoder):
            if isinstance(mlp_module.fc1, PatchedLoraProjection):
                mlp_module.fc1.lora_scale = lora_scale
                mlp_module.fc2.lora_scale = lora_scale
47
48


49
50
51
52
53
54
55
56
57
58
class LoRALinearLayer(nn.Module):
    def __init__(self, in_features, out_features, rank=4, network_alpha=None, device=None, dtype=None):
        super().__init__()

        self.down = nn.Linear(in_features, rank, bias=False, device=device, dtype=dtype)
        self.up = nn.Linear(rank, out_features, bias=False, device=device, dtype=dtype)
        # This value has the same meaning as the `--network_alpha` option in the kohya-ss trainer script.
        # See https://github.com/darkstorm2150/sd-scripts/blob/main/docs/train_network_README-en.md#execute-learning
        self.network_alpha = network_alpha
        self.rank = rank
59
60
        self.out_features = out_features
        self.in_features = in_features
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78

        nn.init.normal_(self.down.weight, std=1 / rank)
        nn.init.zeros_(self.up.weight)

    def forward(self, hidden_states):
        orig_dtype = hidden_states.dtype
        dtype = self.down.weight.dtype

        down_hidden_states = self.down(hidden_states.to(dtype))
        up_hidden_states = self.up(down_hidden_states)

        if self.network_alpha is not None:
            up_hidden_states *= self.network_alpha / self.rank

        return up_hidden_states.to(orig_dtype)


class LoRAConv2dLayer(nn.Module):
79
80
81
    def __init__(
        self, in_features, out_features, rank=4, kernel_size=(1, 1), stride=(1, 1), padding=0, network_alpha=None
    ):
82
83
        super().__init__()

84
85
86
87
88
        self.down = nn.Conv2d(in_features, rank, kernel_size=kernel_size, stride=stride, padding=padding, bias=False)
        # according to the official kohya_ss trainer kernel_size are always fixed for the up layer
        # # see: https://github.com/bmaltais/kohya_ss/blob/2accb1305979ba62f5077a23aabac23b4c37e935/networks/lora_diffusers.py#L129
        self.up = nn.Conv2d(rank, out_features, kernel_size=(1, 1), stride=(1, 1), bias=False)

89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
        # This value has the same meaning as the `--network_alpha` option in the kohya-ss trainer script.
        # See https://github.com/darkstorm2150/sd-scripts/blob/main/docs/train_network_README-en.md#execute-learning
        self.network_alpha = network_alpha
        self.rank = rank

        nn.init.normal_(self.down.weight, std=1 / rank)
        nn.init.zeros_(self.up.weight)

    def forward(self, hidden_states):
        orig_dtype = hidden_states.dtype
        dtype = self.down.weight.dtype

        down_hidden_states = self.down(hidden_states.to(dtype))
        up_hidden_states = self.up(down_hidden_states)

        if self.network_alpha is not None:
            up_hidden_states *= self.network_alpha / self.rank

        return up_hidden_states.to(orig_dtype)


class LoRACompatibleConv(nn.Conv2d):
    """
    A convolutional layer that can be used with LoRA.
    """

    def __init__(self, *args, lora_layer: Optional[LoRAConv2dLayer] = None, **kwargs):
        super().__init__(*args, **kwargs)
        self.lora_layer = lora_layer

    def set_lora_layer(self, lora_layer: Optional[LoRAConv2dLayer]):
        self.lora_layer = lora_layer

122
    def _fuse_lora(self, lora_scale=1.0):
Patrick von Platen's avatar
Patrick von Platen committed
123
124
125
126
127
128
129
130
131
132
133
134
135
136
        if self.lora_layer is None:
            return

        dtype, device = self.weight.data.dtype, self.weight.data.device

        w_orig = self.weight.data.float()
        w_up = self.lora_layer.up.weight.data.float()
        w_down = self.lora_layer.down.weight.data.float()

        if self.lora_layer.network_alpha is not None:
            w_up = w_up * self.lora_layer.network_alpha / self.lora_layer.rank

        fusion = torch.mm(w_up.flatten(start_dim=1), w_down.flatten(start_dim=1))
        fusion = fusion.reshape((w_orig.shape))
137
        fused_weight = w_orig + (lora_scale * fusion)
Patrick von Platen's avatar
Patrick von Platen committed
138
139
140
141
142
143
144
145
        self.weight.data = fused_weight.to(device=device, dtype=dtype)

        # we can drop the lora layer now
        self.lora_layer = None

        # offload the up and down matrices to CPU to not blow the memory
        self.w_up = w_up.cpu()
        self.w_down = w_down.cpu()
146
        self._lora_scale = lora_scale
Patrick von Platen's avatar
Patrick von Platen committed
147
148

    def _unfuse_lora(self):
149
        if not (getattr(self, "w_up", None) is not None and getattr(self, "w_down", None) is not None):
Patrick von Platen's avatar
Patrick von Platen committed
150
151
152
153
154
            return

        fused_weight = self.weight.data
        dtype, device = fused_weight.data.dtype, fused_weight.data.device

155
156
        self.w_up = self.w_up.to(device=device).float()
        self.w_down = self.w_down.to(device).float()
Patrick von Platen's avatar
Patrick von Platen committed
157
158
159

        fusion = torch.mm(self.w_up.flatten(start_dim=1), self.w_down.flatten(start_dim=1))
        fusion = fusion.reshape((fused_weight.shape))
160
        unfused_weight = fused_weight.float() - (self._lora_scale * fusion)
Patrick von Platen's avatar
Patrick von Platen committed
161
162
163
164
165
        self.weight.data = unfused_weight.to(device=device, dtype=dtype)

        self.w_up = None
        self.w_down = None

166
    def forward(self, hidden_states, scale: float = 1.0):
167
        if self.lora_layer is None:
168
169
            # make sure to the functional Conv2D function as otherwise torch.compile's graph will break
            # see: https://github.com/huggingface/diffusers/pull/4315
170
171
172
            return F.conv2d(
                hidden_states, self.weight, self.bias, self.stride, self.padding, self.dilation, self.groups
            )
173
        else:
174
            return super().forward(hidden_states) + (scale * self.lora_layer(hidden_states))
175
176
177
178
179
180
181
182
183
184
185


class LoRACompatibleLinear(nn.Linear):
    """
    A Linear layer that can be used with LoRA.
    """

    def __init__(self, *args, lora_layer: Optional[LoRALinearLayer] = None, **kwargs):
        super().__init__(*args, **kwargs)
        self.lora_layer = lora_layer

Patrick von Platen's avatar
Patrick von Platen committed
186
    def set_lora_layer(self, lora_layer: Optional[LoRALinearLayer]):
187
188
        self.lora_layer = lora_layer

189
    def _fuse_lora(self, lora_scale=1.0):
Patrick von Platen's avatar
Patrick von Platen committed
190
191
192
193
194
195
196
197
198
199
200
201
        if self.lora_layer is None:
            return

        dtype, device = self.weight.data.dtype, self.weight.data.device

        w_orig = self.weight.data.float()
        w_up = self.lora_layer.up.weight.data.float()
        w_down = self.lora_layer.down.weight.data.float()

        if self.lora_layer.network_alpha is not None:
            w_up = w_up * self.lora_layer.network_alpha / self.lora_layer.rank

202
        fused_weight = w_orig + (lora_scale * torch.bmm(w_up[None, :], w_down[None, :])[0])
Patrick von Platen's avatar
Patrick von Platen committed
203
204
205
206
207
208
209
210
        self.weight.data = fused_weight.to(device=device, dtype=dtype)

        # we can drop the lora layer now
        self.lora_layer = None

        # offload the up and down matrices to CPU to not blow the memory
        self.w_up = w_up.cpu()
        self.w_down = w_down.cpu()
211
        self._lora_scale = lora_scale
Patrick von Platen's avatar
Patrick von Platen committed
212
213

    def _unfuse_lora(self):
214
        if not (getattr(self, "w_up", None) is not None and getattr(self, "w_down", None) is not None):
Patrick von Platen's avatar
Patrick von Platen committed
215
216
217
218
219
            return

        fused_weight = self.weight.data
        dtype, device = fused_weight.dtype, fused_weight.device

Patrick von Platen's avatar
Patrick von Platen committed
220
221
222
        w_up = self.w_up.to(device=device).float()
        w_down = self.w_down.to(device).float()

223
        unfused_weight = fused_weight.float() - (self._lora_scale * torch.bmm(w_up[None, :], w_down[None, :])[0])
Patrick von Platen's avatar
Patrick von Platen committed
224
225
226
227
228
        self.weight.data = unfused_weight.to(device=device, dtype=dtype)

        self.w_up = None
        self.w_down = None

229
    def forward(self, hidden_states, scale: float = 1.0):
230
        if self.lora_layer is None:
231
232
            out = super().forward(hidden_states)
            return out
233
        else:
234
235
            out = super().forward(hidden_states) + (scale * self.lora_layer(hidden_states))
            return out