prodigy ner train error iob translated to json annotation data

Hi @JulieSarah ,

You need to convert your data into Prodigy's JSONL format. You're passing the incorrect format into Prodigy that's why you see an error. Since you already have a spaCy file, you can convert it using this script: Script: Load data in spaCy v3's .spacy format

So again, what you can do is:

IOB -> .spaCy file (save it into a serialized file using the DocBin construct) -> Prodigy JSONL file (using the script provided, which you can edit based on your needs)