Fix conll converter option (#7071)

Map `conll` to the NER converter, not the `CoNLL-U` converter.
This commit is contained in:
Adriane Boyd 2021-02-18 10:22:41 +01:00 committed by GitHub
parent 9b82586699
commit 4188beda87
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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,