Skip to content

Commit 0f89ab3

Browse files
author
mbriner
committed
make filter_param actually do something
1 parent 81c349e commit 0f89ab3

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

modAL/batch.py

+6
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,12 @@ def kmeans_batch(
242242
Returns:
243243
The indices of the top n_instances unlabelled samples.
244244
"""
245+
# Limit data set based on n_instances and filter_param
246+
record_limit = filter_param * n_instances
247+
keep_args = np.argsort(uncertainty_scores)[-record_limit:]
248+
uncertainty_scores = uncertainty_scores[keep_args]
249+
unlabeled = unlabeled[keep_args]
250+
245251
# transform unlabeled data if needed
246252
if classifier.on_transformed:
247253
unlabeled = classifier.transform_without_estimating(unlabeled)

0 commit comments

Comments
 (0)