(self)
| 66 | target_min=-1) |
| 67 | |
| 68 | def test_normal(self): |
| 69 | shape = (8, 12, 99) |
| 70 | with self.cached_session(): |
| 71 | for tensor_shape in [shape, tensor_shape_lib.TensorShape(shape)]: |
| 72 | self._runner( |
| 73 | init_ops.RandomNormal(mean=0, stddev=1, seed=153), |
| 74 | tensor_shape, |
| 75 | target_mean=0., |
| 76 | target_std=1) |
| 77 | |
| 78 | def test_truncated_normal(self): |
| 79 | shape = (12, 99, 7) |
nothing calls this directly
no test coverage detected