Hi,
I'm getting started with Prodigy, congrats on building a great tool!
I've been trying to import external annotations into prodigy using the db-in
command. I ran it on a custom-built .jsonl
with text
, meta
, and spans
attributes and it seemed to work fine.
prodigy db-in my_set3 /path/to/file.jsonl
To make sure that the import was successful, I thought I'd run review
and see if my annotations appear in the UI:
prodigy review review_set my_set3 --label "MY_DATE" -v ner_manual
However, I get the following validation error:
✘ Invalid task format for view ID 'review'
versions -> 0 -> answer value is not a valid list
The answer
key is indeed not a list but a string ('accept', as described in the db-in
documentation).
Could you help me find what I'm doing wrong?
Thanks,
Julien