(self, x)
| 707 | self.register_buffer('pe', pe) |
| 708 | |
| 709 | def forward(self, x): |
| 710 | x = x + self.pe[:, :x.size(1)] |
| 711 | return self.dropout(x) |
| 712 | |
| 713 | |
| 714 | class VersatileAttention(CrossAttention): |
nothing calls this directly
no outgoing calls
no test coverage detected