使用辍学时停止程序?

stopping procedure when using dropout?

我目前正在实现一个利用 dropout 的神经网络。一个问题是什么时候停止训练。

通常我会使用提前停止来确定那个点,但在原来的 dropout-paper 中说 "dropout allows much larger nets to be trained and removes the need for early stopping."

如果他们不应用提前停止,他们使用什么停止程序?

提前停止是指在获得足够好的结果后或在一段时间内看不到显着改善后停止训练的某种方案。

他们的停止程序只是"run the training for x number of iterations / epochs"。