(self, inputs)
| 375 | """ |
| 376 | |
| 377 | def _check_input_shape(self, inputs): |
| 378 | inputs_shape = _compute_shape(inputs) |
| 379 | if len(inputs_shape) != 5: |
| 380 | raise ValueError('expected input to be 5D, but got {}D input'.format(inputs.ndim)) |
| 381 | |
| 382 | |
| 383 | class InstanceNorm(Layer): |
nothing calls this directly
no test coverage detected