Standard forward
(self, input)
| 1144 | self.model = nn.Sequential(*model) |
| 1145 | |
| 1146 | def forward(self, input): |
| 1147 | """Standard forward""" |
| 1148 | return self.model(input) |
| 1149 | |
| 1150 | |
| 1151 | class ResnetBlock(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected