default initialization
(self, init_method)
| 111 | return x |
| 112 | |
| 113 | def init_weights(self, init_method): |
| 114 | """default initialization""" |
| 115 | init_uniform(self.conv, init_method) |
| 116 | if self.bn is not None: |
| 117 | init_bn(self.bn) |
| 118 | |
| 119 | |
| 120 | class Conv3d(nn.Module): |
nothing calls this directly
no test coverage detected