Multilingual-VQA / sections /intro /faster_rcnn_approach.md
gchhablani's picture
Fix Typo
b99db33
|
raw
history blame contribute delete
No virus
470 Bytes

A newer version of the Streamlit SDK is available: 1.37.1

Upgrade

For example, a FasterRCNN approach uses the following steps:

  • the image features are given out by a FPN (Feature Pyramid Net) over a ResNet backbone, and
  • then a RPN (Regision Proposal Network) layer detects proposals in those features, and
  • then the ROI (Region of Interest) heads get the box proposals in the original image, and
  • then the boxes are selected using a NMS (Non-max suppression),
  • and then the features for selected boxes are used as visual features.