default initialization
(self, init_method)
| 202 | return x |
| 203 | |
| 204 | def init_weights(self, init_method): |
| 205 | """default initialization""" |
| 206 | init_uniform(self.conv, init_method) |
| 207 | if self.bn is not None: |
| 208 | init_bn(self.bn) |
| 209 | |
| 210 | |
| 211 |
nothing calls this directly
no test coverage detected