tensorflow - 在 TensorFlow 对象检测 API 中使用 SSD 模型的宠物示例的预期准确度?

标签 tensorflow object-detection

我正在使用默认管道配置 (ssd_inception_v2_pets.config) 和预训练的 inception v2 COCO 模型。在 TensorBoard 中,损失继续下降,但平均精度没有任何提高。有人用SSD的inception v2做过类似的实验吗?您的体验如何?

enter image description here

enter image description here

最佳答案

mAP低的原因是extreme low score threshold at non maximum suppression step 。如此低的阈值导致几乎每张图像都会产生超过 70 次检测,而每张图像中只有一个真实值。将此阈值更改为更合理的值 - 0.1 - 会产生更好的 mAP 绘图。

enter image description here

关于tensorflow - 在 TensorFlow 对象检测 API 中使用 SSD 模型的宠物示例的预期准确度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47086760/

相关文章:

machine-learning - Faster-RCNN,为什么我们不只使用 RPN 进行检测呢?

image-processing - 检测图像中是否存在球

python - Mac 上的 TensorFlow 安装错误

python - 构建特征时内存不足(将图像转换为派生特征 [numpy 数组])?

tensorflow - 为什么 Spark ML 感知器分类器具有很高的 F1 分数,而相同的模型在 TensorFlow 上表现却很差?

python-3.x - 如何从保存的模型生成 tflite?

tensorflow - 使用 tensorflow 的对象检测 api 时,命令行中的 "--logtostderr"是什么意思?

python - 优化忽略某些标签值的损失函数

python - 无法在 Ubuntu 17.10 上安装 tensorflow

python - 在 tfrecord 中将灰度转换为 RGB