(self, x: Tensor, skip: Tensor)
| 28 | super(SkipConnection, self).__init__() |
| 29 | |
| 30 | def forward(self, x: Tensor, skip: Tensor) -> Tensor: |
| 31 | return x + skip |
| 32 | |
| 33 | class ApplyVectorWeights(nn.Module): |
| 34 | def __init__(self): |
nothing calls this directly
no outgoing calls
no test coverage detected