Although there are some similar posts, the problem I am facing is a bit different.
Task:
- Manually edit already 'accept'ed annotations
- add a new label into NER with ner.manual.
Problem:
- ner.manual showing 'No tasks available' using the annotated dataset.
- ner.manual showing the same thing after
db-out
anddb-in
as different dataset. Prodigydb-in
documentation (https://prodi.gy/docs/recipes#db-in) not mentioning how to import annotated examples while reverting "answer": "accept" to something else like 'False' or 'ignore'
Output from reading in the export of annotated dataset:
$ prodigy db-in dataset2 ./data/output/v01.jsonl
✔ Created dataset 'dataset2' in database SQLite
✔ Imported 49 annotations to 'dataset2' (session 2020-04-29_14-31-13) in
database SQLite
Found and keeping existing "answer" in 49 examples
Another try that didn't work:
- Delete
,"answer":"accept"
from end of one annotated document. Load as another dataset.
$ prodigy db-in dataset3 ./data/output/v01.jsonl
✔ Created dataset 'dataset3' in database SQLite
✔ Imported 49 annotations to 'dataset3' (session 2020-04-29_14-31-13) in
database SQLite
Found and keeping existing "answer" in 48 examples
Only change is the count in the last line 48 (vs. 49 before deletion). However when I do $ prodigy ner.manual dataset3 prodigy/models/ ./data/output/v01.jsonl --loader jsonl
it still shows 'No tasks available.'
Any help is very appreciated!