Closed pyupya closed 5 years ago
Which dataset are you asking? Answers are provided in the data file.
You can also look at the pred files. They are the probability of each entities being a correct answer. Then you can track it down to the entity-linked retrieved documents or to the KB.
Hope it help.
Thanks for reply, and it really helped. Thanks for your advise, I looked pred file, it has "dist" and "answers". I think they are the result of the model answered,
In pred file,
I'm doing this because I want to see "F1 score" for the model, like in paper! Thanks!
I read paper again, I saw to compute F1 score, tuned a threshold on development set to select answers on paper 5.2. Then, can I use pred file's "dist" for classification? If a dist entity's score under threshold, model classify it not correct answer, or other one over threshold, it can be answer? If so, I wonder how much threshold is set. Thanks!
Yes you can.
And yes, the ones above the threshold are correct answers.
The threshold for F1 is tuned on the dev set.
Thanks for kind reply! Really helped!
Hi, i'm studying in KBQA, and attracted in it. I wanna see how many correct answer is from document or KB. But, I used you code and analyzed, I don't know how I can see some answers from document.
How can I analyze some correct answers are from document or KB?
Sorry for bothering you.