rbo icon indicating copy to clipboard operation
rbo copied to clipboard

Implementation of Rank-biased Overlap

Results 9 rbo issues
Sort by recently updated
recently updated
newest added

The previous link https://researcher.watson.ibm.com/researcher/files/us-fagin/topk.pdf is now dead; I replaced it with a link to the journal paper and added citations for both papers for accessibility in the future (in case...

In your implementation the loop only goes to ``` k = min(self.N_S, self.N_T, k) ``` However, I think it should go to the maximum. For example $S=[1,2,3,4]$ and $T=[2]$ results...

Hi there, thank you for your work on this package! I'm a little confused by the output from the rbo function, given your documentation: You write in the **readme**'s first...

bug

If I do the following ``` import rbo S = [1,2,3,4,5,6,7,8,0,9]; T = [1,2,3,4,5,6,7,8,9,0] print(pip_rbo.RankingSimilarity(S, T).rbo(p=.9)) ``` I get `0.6465385908999999` but with [https://github.com/dlukes/rbo](https://github.com/dlukes/rbo) and (https://towardsdatascience.com/rbo-v-s-kendall-tau-to-compare-ranked-lists-of-items-8776c5182899)[https://towardsdatascience.com/rbo-v-s-kendall-tau-to-compare-ranked-lists-of-items-8776c5182899], I am getting `0.9952170310000001` and...

bug
question

as per the title - deploying a pipeline/app with RBO in logging currently requires downgrading numpy version in requirements.txt

Bumps [tqdm](https://github.com/tqdm/tqdm) from 4.59.0 to 4.66.3. Release notes Sourced from tqdm's releases. tqdm v4.66.3 stable cli: eval safety (fixes CVE-2024-34062, GHSA-g7vv-2v7x-gj9p) tqdm v4.66.2 stable pandas: add DataFrame.progress_map (#1549) notebook: fix...

dependencies

Many value checks in rbo.py use assertions instead of raising exceptions. As stated in the [official python docs ](https://docs.python.org/3/reference/simple_stmts.html#the-assert-statement) asserts can be disabled at runtime, which would lead to unexpected...