(self)
| 170 | target_std=std) |
| 171 | |
| 172 | def test_Orthogonal(self): |
| 173 | shape = (20, 20) |
| 174 | with self.cached_session(): |
| 175 | for tensor_shape in [shape, tensor_shape_lib.TensorShape(shape)]: |
| 176 | self._runner( |
| 177 | init_ops.Orthogonal(seed=123), tensor_shape, target_mean=0.) |
| 178 | |
| 179 | @test_util.run_gpu_only |
| 180 | def testVariablePlacementWithOrthogonalInitializer(self): |
nothing calls this directly
no test coverage detected