I have a dataset of 100 images (saved locally) and I'm using a jsonl file to store the location of images and existed bounding boxes.
A single line in the file may looks like this:
{"image": "animals.png", "width": 2200, "height": 1700, "spans": [{"_id": "1", "points": [[55.0, 95.0], [187.0, 95.0], [187.0, 73.1], [55.0, 73.1]], "label": "cat", "color": "#8011ee"},...]}
The command that I used looks like this:
prodigy image.manual animal_pictures.jsonl --loader jsonl --label cat dog
Everything works normally at the beginning, but after I finished labeling the first 80 images, it showed 'no tasks available' (I'm sure that this dataset is newly created and the other 20 images were not labeled before.)
I tried to end this session and restart it using the same command (same output dataset and same input jsonl file), it worked, but I still only got to label image 81-96 this time before it shows 'no tasks available'. Then no matter if I restart the session or reload the web page, I just couldn't load the last 4 images.
Could anyone tell me the potential reason for this error? Thank you!