(self)
| 94 | self.assertAllClose(np.sort(np_expected_values), np.sort(values)) |
| 95 | |
| 96 | def testTop1(self): |
| 97 | inputs = [[0.1, 0.3, 0.2, 0.4], [0.1, 0.3, 0.3, 0.2]] |
| 98 | self._validateTopK(inputs, 1, [[0.4], [0.3]], [[3], [1]]) |
| 99 | |
| 100 | def testTop2(self): |
| 101 | inputs = [[0.1, 0.3, 0.2, 0.4], [0.1, 0.3, 0.4, 0.2]] |
nothing calls this directly
no test coverage detected