Hello,
I am importing annotations to train a NER model. The annotations are saved as a csv file with columns
_session_id, _view_id, answer, spans, text
However, when I import them with db-in, it looks like it is changing all the answers to accept. After calling the db-in command, I get the following message:
Found and keeping existing "answer" in 0 examples
Then when I look at the stats for the new dataset that I imported my data to, it has all accept answers, and 0 for reject & ignore, which is incorrect.
Also, I do not see any of the spans when I run
prodigy db-out my_dataset | less.
All I see is "text", "_input_hash", "_task_hash", "answer":"accept".
I am using prodigy version 1.10.0.
Why isn't it able to read in the spans or answer while the "text" section looks correct?
Thank you!