mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
Try to fix augmentation
This commit is contained in:
parent
a2aa1f6882
commit
14c4da547f
|
@ -38,7 +38,10 @@ def orth_variants_augmenter(nlp, example, *, level: float = 0.0, lower: float =
|
|||
orig_dict["token_annotation"],
|
||||
lower=raw_text is not None and random.random() < lower,
|
||||
)
|
||||
doc = nlp.make_doc(variant_text)
|
||||
if variant_text is None:
|
||||
doc = Doc(nlp.vocab, words=variant_token_annot["words"])
|
||||
else:
|
||||
doc = nlp.make_doc(variant_text)
|
||||
orig_dict["token_annotation"] = variant_token_annot
|
||||
yield example.from_dict(doc, orig_dict)
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user