(self, x=None, *args, **kwargs)
| 14 | super(IdentityMod, self).__init__() |
| 15 | |
| 16 | def forward(self, x=None, *args, **kwargs) -> Tensor: |
| 17 | return x |
| 18 | |
| 19 | class ConcatTensors(nn.Module): |
| 20 | def __init__(self): |
nothing calls this directly
no outgoing calls
no test coverage detected