(self, x)
| 137 | self.encoder = nn.Sequential(*layers) |
| 138 | |
| 139 | def forward(self, x): |
| 140 | x = self.encoder(x) |
| 141 | return x |
| 142 | |
| 143 | class _sEncoder(nn.Module): |
| 144 | def __init__(self, in_features, out_features, n_time_in): |
nothing calls this directly
no outgoing calls
no test coverage detected