(self, x)
| 74 | p.detach().zero_() |
| 75 | |
| 76 | def forward(self, x): |
| 77 | w_out = self.W(x) |
| 78 | a_out = self.A(x) |
| 79 | b_out = self.B(a_out) |
| 80 | return w_out + b_out * self.lora_scale |
| 81 | |
| 82 | |
| 83 | class LoRAConv(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected