Is max evals equals to epoch?



我即将使用Tensorflow和Faster R-CNN Inception v2模型训练我自己的模型。下面是配置文件:

eval_config: {
num_examples: 500
# Note: The below line limits the evaluation process to 10 evaluations.
# Remove the below line to evaluate indefinitely.
max_evals: 10
}

max_evals= epoch ?如果没有,在哪里配置?

这是no。,在训练过程中你需要评估你的模型多少次
例如::如果你的训练循环是1000次;max_evals = 10,那么代码将在训练过程中每100个epoch后评估测试数据。

最新更新