From 4188beda871b1e40eb8d02b8a787b6878c89717e Mon Sep 17 00:00:00 2001 From: Adriane Boyd Date: Thu, 18 Feb 2021 10:22:41 +0100 Subject: [PATCH] Fix conll converter option (#7071) Map `conll` to the NER converter, not the `CoNLL-U` converter. --- spacy/cli/convert.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/cli/convert.py b/spacy/cli/convert.py index 1eacd6399..d13a4fc80 100644 --- a/spacy/cli/convert.py +++ b/spacy/cli/convert.py @@ -22,7 +22,7 @@ from ..training.converters import conllu_to_docs CONVERTERS = { "conllubio": conllu_to_docs, "conllu": conllu_to_docs, - "conll": conllu_to_docs, + "conll": conll_ner_to_docs, "ner": conll_ner_to_docs, "iob": iob_to_docs, "json": json_to_docs,