Hi,
I am trying to run an active learning annotation classification task(textcat.teach
) via the prodigy api, but contrary to what the documentation states in Prodigy's excellent README.html
, I don't see an id field in the payload returned when hitting /get_responses
{
"tasks": [
{
"text": "database designer",
"_input_hash": -1510625000,
"_task_hash": -1222882742,
"label": "information_technology",
"score": 0.10009049624204636,
"priority": 0.10009049624204636,
"spans": [],
"meta": {
"score": 0.10009049624204636
},
"_session_id": null,
"_view_id": "classification"
},
Am I missing something? I am trying to understand what the response payload needs to be for /give_answers
in this case when there is not id provided by /get_responses
Also in /give_answers
example in the README.html
, there is a "score" field shown, what is that score supposed to be? (a simple echo of the one provided in /get_questions
?)
Thank you in advance!