人们是否训练得较早而停止训练对象检测方法,其设置是什么?

问题描述 投票:2回答:1

我正在研究一些与对象检测方法有关的东西(YOLOv3,Faster-RCNN,RetinaNet等),我需要训练VOC2007和VOC2012(当然要使用预先训练的模型)。但是,当我阅读相关论文时,我看不到人们描述他们是使用早期停止训练还是仅使用固定次数的迭代训练的。如果他们使用了提前停止,那么在停止之前要设置多少个步骤?因为当我在停止之前尝试了100步时,结果确实很差。请帮助我,非常感谢。

object-detection object-detection-api yolo faster-rcnn
1个回答
0
投票

我找到了implementation of the PASCAL VOC2012 dataset trained for semantic segmentation that uses the following early stopping parameters

earlyStopping = EarlyStopping(
    monitor='val_loss', patience=30, verbose=2, mode='auto')
© www.soinside.com 2019 - 2024. All rights reserved.