remove good message on uniqueness

This commit is contained in:
Peter Baumgartner 2023-01-23 09:41:46 -05:00
parent 7e9c5e9460
commit 7a0faed7a7

View File

@ -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"]