We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I think some of the failing tests might actually be wrong.
For example, consider:
rbstar/rbstar/tests/test_rb_metrics.py
Line 36 in 19d3552
This test is computing RBP with phi = 0.8 on the ranking [ [1], [2], [3], ..., [25] ]with positive docs [1] and [2] and negative document [3].
The lower-bound RBP score should thus be:
((1 - 0.8 ) / 0.8 ) * (0.8 ^ 1 + 0.8 ^ 2) = 0.360
since docs [1] and [2] are both relevant at ranks 1 and 2.
Could someone please verify? We'll need to check the other tests carefully too.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I think some of the failing tests might actually be wrong.
For example, consider:
rbstar/rbstar/tests/test_rb_metrics.py
Line 36 in 19d3552
This test is computing RBP with phi = 0.8 on the ranking [ [1], [2], [3], ..., [25] ]with positive docs [1] and [2] and negative document [3].
The lower-bound RBP score should thus be:
((1 - 0.8 ) / 0.8 ) * (0.8 ^ 1 + 0.8 ^ 2) = 0.360
since docs [1] and [2] are both relevant at ranks 1 and 2.
Could someone please verify? We'll need to check the other tests carefully too.
The text was updated successfully, but these errors were encountered: