August 2018
Intermediate to advanced
272 pages
7h 2m
English
More often than not, your model in practice will return multiple detection windows for the same object. To handle this, we use an algorithm called Non-Maximum Suppression. This algorithm filters these multiple boxes using the "IoU and presence of object" as heuristics. Here's how it works:
We will use the Non-Maximum suppression on the prediction time on our detector:
Tensorflow already has a function that implements the ...