(self, x)
| 194 | # self.init_weights(init_method) |
| 195 | |
| 196 | def forward(self, x): |
| 197 | y = self.conv(x) |
| 198 | if self.bn is not None: |
| 199 | x = self.bn(y) |
| 200 | if self.relu: |
| 201 | x = F.relu(x, inplace=True) |
| 202 | return x |
| 203 | |
| 204 | def init_weights(self, init_method): |
| 205 | """default initialization""" |
nothing calls this directly
no outgoing calls
no test coverage detected