I have a .tsv file with token-per-line NER format & have converted it to JSON format using the CLI convert command: python -m spacy convert input.tsv output_dir -t json -c ner
This results in the following format:
[
{
"id":0,
"paragraphs":[
{
"sentences":[
{
"tokens":[
{
"orth":"",
"tag":"",
"ner":""
}
]
}
]
}
]
}
]
Is there an option to convert the resultant .json into prodigy compatible .jsonl?
Thanks!