5

I was looking at the TensorFlow 2.0 Detection Zoo recently and found the SSD MobileNet V2 FPNLite 320x320 pre-trained model and was wondering what the FPN part in "FPNLite" means/stands for.

Mr. Ace
  • 335
  • 3
  • 14

2 Answers2

3

It stands for Feature Pyramid Network. Its a subnetwork which outputs feature maps of different resolutions. An explanation of FPN using detectron2 as an example is here: https://medium.com/@hirotoschwert/digging-into-detectron-2-part-2-dd6e8b0526e

katsu
  • 604
  • 6
  • 7
1

A Feature Pyramid Network, or FPN, is a feature extractor that takes a single-scale image of an arbitrary size as input, and outputs proportionally sized feature maps at multiple levels, in a fully convolutional fashion. This process is independent of the backbone convolutional architectures.

Deepak Raj
  • 462
  • 5
  • 15