From 7a0faed7a7f3ee334b0770b0573786caed50c98e Mon Sep 17 00:00:00 2001 From: Peter Baumgartner <5107405+pmbaumgartner@users.noreply.github.com> Date: Mon, 23 Jan 2023 09:41:46 -0500 Subject: [PATCH] remove good message on uniqueness --- spacy/cli/debug_data.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/spacy/cli/debug_data.py b/spacy/cli/debug_data.py index 9a9ad9ae1..2b1b4377d 100644 --- a/spacy/cli/debug_data.py +++ b/spacy/cli/debug_data.py @@ -696,14 +696,10 @@ def debug_data( if gold_train_data["n_low_cardinality_lemmas"] > 0: n = gold_train_data["n_low_cardinality_lemmas"] msg.warn(f"{n} docs with 1 or 0 unique lemmas.") - else: - msg.good("All training docs meet lemma uniqueness requirements.") if gold_dev_data["n_low_cardinality_lemmas"] > 0: n = gold_dev_data["n_low_cardinality_lemmas"] msg.warn(f"{n} docs with 1 or 0 unique lemmas.") - else: - msg.good("All dev docs meet lemma uniqueness requirements.") if gold_train_data["no_lemma_annotations"] > 0: n = gold_train_data["no_lemma_annotations"]