(self)
| 94 | |
| 95 | @test_util.run_in_graph_and_eager_modes |
| 96 | def testCallTensorDot(self): |
| 97 | dense = core_layers.Dense(2, activation=nn_ops.relu, name='my_dense') |
| 98 | inputs = random_ops.random_uniform((5, 4, 3), seed=1) |
| 99 | outputs = dense(inputs) |
| 100 | self.assertListEqual([5, 4, 2], outputs.get_shape().as_list()) |
| 101 | |
| 102 | @test_util.run_in_graph_and_eager_modes |
| 103 | def testNoBias(self): |
nothing calls this directly
no test coverage detected