Chapter 6: Top Dectective
Rather than relying on NMS to find the most viable and highest values, lets do it directly ourselves.
Source Tensor
[[
[1, 2, 3, 4, 5],
[1.1, 2.1, 3.1, 4.1, 5.1],
[1.2, 2.2, 3.2, 4.2, 5.2],
[1.2, 12.2, 3.2, 4.2, 5.2],
[1.3, 2.3, 3.3, 4.3, 5.3],
[1, 1, 1, 1, 1],
]]
Indexes with highest ranking value
[3, 4, 2]