Standard forward
(self, input)
| 1091 | self.model = nn.Sequential(*model) |
| 1092 | |
| 1093 | def forward(self, input): |
| 1094 | """Standard forward""" |
| 1095 | return self.model(input) |
| 1096 | |
| 1097 | |
| 1098 | class ResnetEncoder(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected