Newbie question about NER and training dataset #11288
-
Hello all, I looked for this answer a lot of times and i never found it. Is there a way to "translate" from a .spacy dataset to the format used in th example before? Do you have any function to do this? (I am trying to update a NER model and begining to understand it but all the examples that I saw, they are using a variable like "Training data" instead of a spacy file. Thank you |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
We don't have a function to go from a DocBin (
There's nothing special about the simple training format; the example uses it because you probably don't have |
Beta Was this translation helpful? Give feedback.
We don't have a function to go from a DocBin (
.spacy
file) to the simpleTRAINING_DATA
format, but you can do so simply enough with a function:There's nothing special about the simple training format; the example uses it because you probably don't have
.spacy
files already and you'll need to convert whatever other annotations you have, so it's just an example of how to do that with relatively …