mmocr
mmocr copied to clipboard
训练mmocr识别模型时候 evaluation = dict(interval=1, metric='acc',save_best = 'auto') 无法像mmclassicifition 保存最优模型
训练mmocr识别模型时候 evaluation = dict(interval=1, metric='acc',save_best = 'auto') 无法像mmclassicifition 保存最优模型
We recommend using English or English & Chinese for issues so that we could have broader discussion.
Hi, you have to specify the metric name as 0_word_acc_ignore_case
for example, for recognition task. Please also refer to issue #1130 .
For example
evaluation = dict(
interval=1, metric=["acc"], save_best="0_word_acc_ignore_case_symbol", rule="greater"
)
Thanks for your answer, I'll try it now