spacy 中 model-best 和 model-last 之间的区别
difference between model-best and model-last in spacy
模型训练后spacy生成了model\model-best
和model\model-last
文件夹。这两种模型有什么区别,应使用哪一种进行预测?
model-best
是在开发集上得分最高的模型。它通常是您想要使用的模型。
model-last
是上次迭代训练的模型。如果你恢复训练,你可能想使用它。
模型训练后spacy生成了model\model-best
和model\model-last
文件夹。这两种模型有什么区别,应使用哪一种进行预测?
model-best
是在开发集上得分最高的模型。它通常是您想要使用的模型。
model-last
是上次迭代训练的模型。如果你恢复训练,你可能想使用它。