I am trying to convert conll format data into spacy's json format to train a model.
I am using spacy's convert for the same. I have tried this command
      python -m spacy convert conll_dataset.tsv /Users/user/docs -t json -c ner
I am getting a value error.
     ValueError: [E177] Ill-formed IOB input detected: in
I deleted all occurring of 'in' in a dataset and tried again , then I got a same error with a slight change.
     ValueError: [E177] Ill-formed IOB input detected: an
Help me out wth this problem. my dataset looks like this
     Abhishek   Name
     Jha    Name
     Application    Designation
     Development    Designation
     Associate  Designation
I am using spacy 2.3.2