Since #24 , we now have a single DocumentList that might contain -1 relevance assessments. However, getQrelDocuments used to access the traditional qrels, which don't exist anymore.
Either
(a) add a method to convert the inner DocumentList to traditional qrels and call it before getQrelDocuments; or
(b) add back getSampleQrelDocuments, make it return the full list and return the behavior of getQrelDocuments (probably by converting using (a)).
Since #24 , we now have a single DocumentList that might contain -1 relevance assessments. However,
getQrelDocuments
used to access the traditional qrels, which don't exist anymore.Either (a) add a method to convert the inner
DocumentList
to traditional qrels and call it beforegetQrelDocuments
; or (b) add backgetSampleQrelDocuments
, make it return the full list and return the behavior ofgetQrelDocuments
(probably by converting using (a)).