(self, x)
| 242 | self.register_buffer('pe', pe) |
| 243 | |
| 244 | def forward(self, x): |
| 245 | x = x + self.pe[:, :x.size(1)] |
| 246 | return self.dropout(x) |
| 247 | |
| 248 | |
| 249 | class VersatileAttention(CrossAttention): |
nothing calls this directly
no outgoing calls
no test coverage detected