From 10d938f2217bf0a01d8a5df7ba730c11b9404aa2 Mon Sep 17 00:00:00 2001 From: Adriane Boyd Date: Wed, 3 Jun 2020 14:15:50 +0200 Subject: [PATCH] Update default cfg dir in train CLI --- spacy/cli/train.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/cli/train.py b/spacy/cli/train.py index 04f39ca8f..d4010c43b 100644 --- a/spacy/cli/train.py +++ b/spacy/cli/train.py @@ -112,7 +112,7 @@ def train( eval_beam_widths.sort() has_beam_widths = eval_beam_widths != [1] - default_dir = Path(__file__).parent.parent / "ml" / "models" / "defaults" + default_dir = Path(__file__).parent.parent / "pipeline" / "defaults" # Set up the base model and pipeline. If a base model is specified, load # the model and make sure the pipeline matches the pipeline setting. If