(self, x1, x2)
| 102 | self.layer.append(layer) |
| 103 | |
| 104 | def forward(self, x1, x2): |
| 105 | for layer_block in self.layer: |
| 106 | x1 = layer_block(x1, x2) |
| 107 | encoded = self.encoder_norm(x1) |
| 108 | return encoded |
| 109 | |
| 110 | |
| 111 | class Attention(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected