mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-26 01:46:28 +03:00
Make alignment case-insensitive for gold
This commit is contained in:
parent
fc4dd62e84
commit
ebb6c49cd5
|
@ -89,8 +89,8 @@ def _min_edit_path(cand_words, gold_words):
|
||||||
# TODO: Fix this --- just do it properly, make the full edit matrix and
|
# TODO: Fix this --- just do it properly, make the full edit matrix and
|
||||||
# then walk back over it...
|
# then walk back over it...
|
||||||
# Preprocess inputs
|
# Preprocess inputs
|
||||||
cand_words = [punct_re.sub('', w) for w in cand_words]
|
cand_words = [punct_re.sub('', w).lower() for w in cand_words]
|
||||||
gold_words = [punct_re.sub('', w) for w in gold_words]
|
gold_words = [punct_re.sub('', w).lower() for w in gold_words]
|
||||||
|
|
||||||
if cand_words == gold_words:
|
if cand_words == gold_words:
|
||||||
return 0, ''.join(['M' for _ in gold_words])
|
return 0, ''.join(['M' for _ in gold_words])
|
||||||
|
|
Loading…
Reference in New Issue
Block a user