Sockeye WMT 德语到英语新闻翻译停止标准

Sockeye WMT German to English news translation stopping criterium

我正在 https://awslabs.github.io/sockeye/tutorials/wmt.html 学习教程。

以下命令给出以下输出。

python3 -m sockeye.train -d train_data \
                        -vs newstest2016.tc.BPE.de \
                        -vt newstest2016.tc.BPE.en \
                        --max-seq-len 60 \
                        --decode-and-evaluate 500 \
                        --use-cpu \
                        -o wmt_model

sockeye.utils.SockeyeError: Please specify at least one stopping criteria: --max-samples --max-updates --max-checkpoints --max-num-epochs --max-num-checkpoint-not-improved

这项任务的合理停止标准是什么?

典型的停止标准是提前停止,即训练模型直到验证损失改善。在 Sockey 中,它是 --max-num-checkpoint-not-improved。有关详细信息,请参阅 Sockey documentation