From d3a83211721bd04513070c7aeda3bc205a0d86f1 Mon Sep 17 00:00:00 2001 From: svlandeg Date: Wed, 19 Aug 2020 15:12:12 +0200 Subject: [PATCH] fix typos --- website/docs/usage/projects.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/website/docs/usage/projects.md b/website/docs/usage/projects.md index 61367fb0e..123ef195e 100644 --- a/website/docs/usage/projects.md +++ b/website/docs/usage/projects.md @@ -155,8 +155,8 @@ other. For instance, to generate a packaged model, you might start by converting your data, then run [`spacy train`](/api/cli#train) to train your model on the converted data and if that's successful, run [`spacy package`](/api/cli#package) to turn the best model artifact into an installable Python package. The -following command run the workflow named `all` defined in the `project.yml`, and -execute the commands it specifies, in order: +following command runs the workflow named `all` defined in the `project.yml`, and +executes the commands it specifies, in order: ```cli $ python -m spacy project run all @@ -199,7 +199,7 @@ https://github.com/explosion/spacy-boilerplates/blob/master/ner_fashion/project. ### Dependencies and outputs {#deps-outputs} Each command defined in the `project.yml` can optionally define a list of -dependencies and outputs. These are the files the commands requires and creates. +dependencies and outputs. These are the files the command requires and creates. For example, a command for training a model may depend on a [`config.cfg`](/usage/training#config) and the training and evaluation data, and it will export a directory `model-best`, containing the best model, which you