(self, inputs)
| 327 | """ |
| 328 | |
| 329 | def _check_input_shape(self, inputs): |
| 330 | inputs_shape = _compute_shape(inputs) |
| 331 | if len(inputs_shape) != 2 and len(inputs_shape) != 3: |
| 332 | raise ValueError('expected input to be 2D or 3D, but got {}D input'.format(inputs.ndim)) |
| 333 | |
| 334 | |
| 335 | class BatchNorm2d(BatchNorm): |
nothing calls this directly
no test coverage detected