train my IOB format using spacy #6724
-
I have data in this format, (IOB format on token level)
how can I train a classifer which work like NER by spacy? (My case is not NER , but the format is close) should I convert my data to spacy format? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Any luck with this? |
Beta Was this translation helpful? Give feedback.
-
Hi @myeghaneh , if you have data in the IOB format, perhaps you can check out the spaCy Once you have the |
Beta Was this translation helpful? Give feedback.
Hi @myeghaneh , if you have data in the IOB format, perhaps you can check out the spaCy
convert
command? You can refer to these examples for more info. It might even make sense to save them as an.iob
file first before running the command.Once you have the
.spacy
files, you can now start training.