(self, inputs)
| 351 | """ |
| 352 | |
| 353 | def _check_input_shape(self, inputs): |
| 354 | inputs_shape = _compute_shape(inputs) |
| 355 | if len(inputs_shape) != 4: |
| 356 | raise ValueError('expected input to be 4D, but got {}D input'.format(inputs.ndim)) |
| 357 | |
| 358 | |
| 359 | class BatchNorm3d(BatchNorm): |
nothing calls this directly
no test coverage detected