diff --git a/website/docs/usage/training.md b/website/docs/usage/training.md index 9f929fe19..9bcb1ee14 100644 --- a/website/docs/usage/training.md +++ b/website/docs/usage/training.md @@ -45,6 +45,14 @@ you generate a starter config with the **recommended settings** for your specific use case. It's also available in spaCy as the [`init config`](/api/cli#init-config) command. + + +Upgrade to the [latest version of spaCy](/usage) to use the quickstart widget. +For earlier releases, follow the CLI instructions to generate a compatible +config. + + + > #### Instructions: widget > > 1. Select your requirements and settings. diff --git a/website/src/widgets/quickstart-training.js b/website/src/widgets/quickstart-training.js index 8481d2048..2d3a0e679 100644 --- a/website/src/widgets/quickstart-training.js +++ b/website/src/widgets/quickstart-training.js @@ -10,7 +10,7 @@ const DEFAULT_LANG = 'en' const DEFAULT_HARDWARE = 'cpu' const DEFAULT_OPT = 'efficiency' const DEFAULT_TEXTCAT_EXCLUSIVE = true -const COMPONENTS = ['tagger', 'parser', 'ner', 'textcat'] +const COMPONENTS = ['tagger', 'morphologizer', 'parser', 'ner', 'textcat'] const COMMENT = `# This is an auto-generated partial config. To use it with 'spacy train' # you can run spacy init fill-config to auto-fill all default settings: # python -m spacy init fill-config ./base_config.cfg ./config.cfg`