(self)
| 9 | |
| 10 | class TestTensorflow(unittest.TestCase): |
| 11 | def test_addition(self): |
| 12 | result = tf.add([1, 2], [3, 4]) |
| 13 | self.assertEqual([2], result.shape) |
| 14 | |
| 15 | def test_conv2d(self): |
| 16 | input = tf.random.normal([1,2,2,1]) |
nothing calls this directly
no outgoing calls
no test coverage detected