From 0b02dc4c57df5bfe4ad4ba35063f63ccd2435395 Mon Sep 17 00:00:00 2001 From: Lj Miranda <12949683+ljvmiranda921@users.noreply.github.com> Date: Fri, 18 Mar 2022 15:56:21 +0800 Subject: [PATCH] Fix mixed-up parameters for spacy-conll (#10516) --- website/meta/universe.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/meta/universe.json b/website/meta/universe.json index a930363a4..cd8f25890 100644 --- a/website/meta/universe.json +++ b/website/meta/universe.json @@ -2415,8 +2415,8 @@ "# 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", "# are passed onto their Pipeline() initialisation", - "nlp = init_parser(\"stanza\",", - " \"en\",", + "nlp = init_parser(\"en\",", + " \"stanza\",", " parser_opts={\"use_gpu\": True, \"verbose\": False},", " include_headers=True)", "# Parse a given string",