8000 Wrapping a line to make the linter happy · scikit-learn/scikit-learn@51b64aa · GitHub
[go: up one dir, main page]

Skip to content

Commit 51b64aa

Browse files
authored
Wrapping a line to make the linter happy
1 parent 203a40d commit 51b64aa

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

examples/semi_supervised/plot_label_propagation_digits_active_learning.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@
7171

7272
# select five digit examples that the classifier is most uncertain about
7373
uncertainty_index = np.argsort(pred_entropies)[::-1]
74-
uncertainty_index = uncertainty_index[np.in1d(uncertainty_index, unlabeled_indices)][:5]
74+
uncertainty_index = uncertainty_index[
75+
np.in1d(uncertainty_index, unlabeled_indices)][:5]
7576

7677
# keep track of indices that we get labels for
7778
delete_indices = np.array([])

0 commit comments

Comments
 (0)
0