From 878327d38e1e3c7f2284c9aa442b0566d519b2e6 Mon Sep 17 00:00:00 2001 From: svlandeg Date: Fri, 31 Jul 2020 17:36:32 +0200 Subject: [PATCH] printing final predictions by default to False --- spacy/cli/debug_model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/cli/debug_model.py b/spacy/cli/debug_model.py index 84a496e12..bf565df0b 100644 --- a/spacy/cli/debug_model.py +++ b/spacy/cli/debug_model.py @@ -25,7 +25,7 @@ def debug_model_cli( P0: bool = Opt(False, "--print-step0", "-P0", help="Print model before training"), P1: bool = Opt(False, "--print-step1", "-P1", help="Print model after initialization"), P2: bool = Opt(False, "--print-step2", "-P2", help="Print model after training"), - P3: bool = Opt(True, "--print-step3", "-P3", help="Print final predictions"), + P3: bool = Opt(False, "--print-step3", "-P3", help="Print final predictions"), use_gpu: int = Opt(-1, "--gpu-id", "-g", help="GPU ID or -1 for CPU") # fmt: on ):