From 90040aacec90f18d7e5a0c5f051352316f9e5cd0 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Mon, 5 Oct 2020 16:12:01 +0200 Subject: [PATCH] Fix merge --- spacy/training/augment.py | 1 - 1 file changed, 1 deletion(-) diff --git a/spacy/training/augment.py b/spacy/training/augment.py index bbe164aed..685016b62 100644 --- a/spacy/training/augment.py +++ b/spacy/training/augment.py @@ -119,7 +119,6 @@ def make_orth_variants( orig_token_dict = copy.deepcopy(token_dict) ndsv = orth_variants.get("single", []) ndpv = orth_variants.get("paired", []) - logger.debug(f"Data augmentation: {len(ndsv)} single / {len(ndpv)} paired variants") words = token_dict.get("ORTH", []) tags = token_dict.get("TAG", []) # keep unmodified if words or tags are not defined