mirror of https://github.com/explosion/spaCy.git
Fix conll converter option (#7071)
Map `conll` to the NER converter, not the `CoNLL-U` converter.
This commit is contained in:
parent
9b82586699
commit
4188beda87
|
@ -22,7 +22,7 @@ from ..training.converters import conllu_to_docs
|
||||||
CONVERTERS = {
|
CONVERTERS = {
|
||||||
"conllubio": conllu_to_docs,
|
"conllubio": conllu_to_docs,
|
||||||
"conllu": conllu_to_docs,
|
"conllu": conllu_to_docs,
|
||||||
"conll": conllu_to_docs,
|
"conll": conll_ner_to_docs,
|
||||||
"ner": conll_ner_to_docs,
|
"ner": conll_ner_to_docs,
|
||||||
"iob": iob_to_docs,
|
"iob": iob_to_docs,
|
||||||
"json": json_to_docs,
|
"json": json_to_docs,
|
||||||
|
|
Loading…
Reference in New Issue