mirror of https://github.com/explosion/spaCy.git
Fix mixed-up parameters for spacy-conll (#10516)
This commit is contained in:
parent
3ff5a6a5c0
commit
0b02dc4c57
|
@ -2415,8 +2415,8 @@
|
||||||
"# Indicate that we want to get the CoNLL headers in the string output.",
|
"# Indicate that we want to get the CoNLL headers in the string output.",
|
||||||
"# `use_gpu` and `verbose` are specific to stanza (and stanfordnlp). These keywords arguments",
|
"# `use_gpu` and `verbose` are specific to stanza (and stanfordnlp). These keywords arguments",
|
||||||
"# are passed onto their Pipeline() initialisation",
|
"# are passed onto their Pipeline() initialisation",
|
||||||
"nlp = init_parser(\"stanza\",",
|
"nlp = init_parser(\"en\",",
|
||||||
" \"en\",",
|
" \"stanza\",",
|
||||||
" parser_opts={\"use_gpu\": True, \"verbose\": False},",
|
" parser_opts={\"use_gpu\": True, \"verbose\": False},",
|
||||||
" include_headers=True)",
|
" include_headers=True)",
|
||||||
"# Parse a given string",
|
"# Parse a given string",
|
||||||
|
|
Loading…
Reference in New Issue