未验证 提交 1d41d890 编写于 作者: Z zhoujun 提交者: GitHub

Merge pull request #1936 from WenmuZhou/dygraph_rc

[cherry-pick] fix divide zero error
......@@ -29,7 +29,7 @@ class RecMetric(object):
pred = pred.replace(" ", "")
target = target.replace(" ", "")
norm_edit_dis += Levenshtein.distance(pred, target) / max(
len(pred), len(target))
len(pred), len(target), 1)
if pred == target:
correct_num += 1
all_num += 1
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册