We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81c349e commit 0f89ab3Copy full SHA for 0f89ab3
modAL/batch.py
@@ -242,6 +242,12 @@ def kmeans_batch(
242
Returns:
243
The indices of the top n_instances unlabelled samples.
244
"""
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
+
251
# transform unlabeled data if needed
252
if classifier.on_transformed:
253
unlabeled = classifier.transform_without_estimating(unlabeled)
0 commit comments