Merge pull request #6870 from adrianeboyd/bugfix/quickstart-lang-tokenizers [ci skip]

Remove nlp.tokenizer from quickstart template
This commit is contained in:
Ines Montani 2021-02-01 21:24:52 +11:00 committed by GitHub
commit 3b9ecd25d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,7 +18,6 @@ gpu_allocator = null
lang = "{{ lang }}"
{%- set full_pipeline = ["transformer" if use_transformer else "tok2vec"] + components %}
pipeline = {{ full_pipeline|pprint()|replace("'", '"')|safe }}
tokenizer = {"@tokenizers": "spacy.Tokenizer.v1"}
batch_size = {{ 128 if hardware == "gpu" else 1000 }}
[components]