I use the following command to mark a file and name it ner-d3
python -m prodigy ner.manual ner-d3 ./ner-d3.txt --label MD,GD,DD,RD,PHON
Then I trained the dataset and generated model-best
Then I marked a new file with the following command and named it the dataset ner-d1
python -m prodigy ner.correct ner-d1 ./ner-d2/model-best/ ./ner-d1.txt
After labeling, I downloaded jsonl .
python -m prodigy db-out ner-d1 > ner-d1.jsonl
but I found that there are no token-start and token-end attributes in the span of ner-d1.jsonl. I need the two attributes. How can I solve this problem? Thank you.