(self)
| 232 | target_max=1.) |
| 233 | |
| 234 | def test_Zeros(self): |
| 235 | shape = (4, 5) |
| 236 | with self.cached_session(): |
| 237 | for tensor_shape in [shape, tensor_shape_lib.TensorShape(shape)]: |
| 238 | self._runner( |
| 239 | init_ops.Zeros(), tensor_shape, target_mean=0., target_max=0.) |
| 240 | |
| 241 | def test_Ones(self): |
| 242 | shape = (4, 5) |
nothing calls this directly
no test coverage detected