(self)
| 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]] |
| 102 | self._validateTopK(inputs, 2, [[0.4, 0.3], [0.4, 0.3]], [[3, 1], [2, 1]]) |
| 103 | |
| 104 | def testTop3(self): |
| 105 | k = 5 |
nothing calls this directly
no test coverage detected