【发布时间】:2020-12-18 13:48:33
【问题描述】:
我最近在看 TensorFlow 2.0 Detection Zoo,发现了 SSD MobileNet V2 FPNLite 320x320 预训练模型,我想知道“FPNLite”中的 FPN 部分是什么意思/代表什么。
【问题讨论】:
标签: python tensorflow tensorflow2.0 tensorflow-lite mobilenet
我最近在看 TensorFlow 2.0 Detection Zoo,发现了 SSD MobileNet V2 FPNLite 320x320 预训练模型,我想知道“FPNLite”中的 FPN 部分是什么意思/代表什么。
【问题讨论】:
标签: python tensorflow tensorflow2.0 tensorflow-lite mobilenet
它代表特征金字塔网络。 它是一个输出不同分辨率特征图的子网络。 这里以detectron2为例对FPN的解释:https://medium.com/@hirotoschwert/digging-into-detectron-2-part-2-dd6e8b0526e
【讨论】:
特征金字塔网络 (FPN) 是一种特征提取器,它以任意大小的单尺度图像作为输入,并以完全卷积的方式在多个级别输出按比例大小的特征图。这个过程独立于主干卷积架构。
【讨论】: