mirror of
https://github.com/macaodha/batdetect2.git
synced 2026-01-11 09:29:33 +01:00
Drop duplicate bin edges
This commit is contained in:
parent
f361420e58
commit
31a0d1bbb5
@ -154,7 +154,7 @@ def get_binned_sample(matches: List[MatchEvaluation], n_examples: int = 5):
|
|||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|
||||||
bins = pd.qcut(pred_scores, q=n_examples, labels=False)
|
bins = pd.qcut(pred_scores, q=n_examples, labels=False, duplicates="drop")
|
||||||
df = pd.DataFrame({"indices": indices, "bins": bins})
|
df = pd.DataFrame({"indices": indices, "bins": bins})
|
||||||
sample = df.groupby("bins").apply(lambda x: x.sample(1))
|
sample = df.groupby("bins").apply(lambda x: x.sample(1))
|
||||||
return [matches[ind] for ind in sample["indices"]]
|
return [matches[ind] for ind in sample["indices"]]
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user