From 65b55f1aaa55b146daf6198a2c10d72b652b2778 Mon Sep 17 00:00:00 2001 From: Ines Montani Date: Fri, 10 May 2019 14:06:06 +0200 Subject: [PATCH] Add version tag to `--base-model` argument (closes #3720) --- website/docs/api/cli.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/api/cli.md b/website/docs/api/cli.md index 474448d60..ef3e6f84a 100644 --- a/website/docs/api/cli.md +++ b/website/docs/api/cli.md @@ -210,7 +210,7 @@ $ python -m spacy train [lang] [output_path] [train_path] [dev_path] | `output_path` | positional | Directory to store model in. Will be created if it doesn't exist. | | `train_path` | positional | Location of JSON-formatted training data. Can be a file or a directory of files. | | `dev_path` | positional | Location of JSON-formatted development data for evaluation. Can be a file or a directory of files. | -| `--base-model`, `-b` | option | Optional name of base model to update. Can be any loadable spaCy model. | +| `--base-model`, `-b` 2.1 | option | Optional name of base model to update. Can be any loadable spaCy model. | | `--pipeline`, `-p` 2.1 | option | Comma-separated names of pipeline components to train. Defaults to `'tagger,parser,ner'`. | | `--vectors`, `-v` | option | Model to load vectors from. | | `--n-iter`, `-n` | option | Number of iterations (default: `30`). |