Object detection in fast.ai v1

Hi,

the models return three thinks:

  1. [1, 24480, 3] -> [Batchsize, number of boxes, classes + background] -> classification results for each anchor
  2. [1, 24480, 4] -> [Batchsize, number of boxes, box-coordinates refinements] -> how the anchors should be resized to match the objects in the image
  3. Feature map shapes. You can ignore that for a start is more for debug purposes

For inference please take a look at the following colab notebook:
https://colab.research.google.com/drive/16un8u65D4oTWiWzpdjMU_cpnVasaQ72n

or this function in the repo:

3 Likes