mirror of
https://github.com/explosion/spaCy.git
synced 2025-01-13 18:56:36 +03:00
Merge branch 'develop' into feature/embed-features
This commit is contained in:
commit
22937d25a9
|
@ -138,7 +138,7 @@ def make_orth_variants(
|
||||||
punct_choices = [random.choice(x["variants"]) for x in ndpv]
|
punct_choices = [random.choice(x["variants"]) for x in ndpv]
|
||||||
for word_idx in range(len(words)):
|
for word_idx in range(len(words)):
|
||||||
for punct_idx in range(len(ndpv)):
|
for punct_idx in range(len(ndpv)):
|
||||||
if tags[word_idx] in ndpv[punct_idx]["TAG"] and words[
|
if tags[word_idx] in ndpv[punct_idx]["tags"] and words[
|
||||||
word_idx
|
word_idx
|
||||||
] in itertools.chain.from_iterable(ndpv[punct_idx]["variants"]):
|
] in itertools.chain.from_iterable(ndpv[punct_idx]["variants"]):
|
||||||
# backup option: random left vs. right from pair
|
# backup option: random left vs. right from pair
|
||||||
|
|
Loading…
Reference in New Issue
Block a user