Skip to content

Commit bd58b1a

Browse files
authored
Merge branch 'dev_1.19.0' into sklearn_nbclasses
2 parents 617d8d9 + 0b4bb68 commit bd58b1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

art/estimators/certification/randomized_smoothing/randomized_smoothing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def predict(self, x: np.ndarray, batch_size: int = 128, verbose: bool = False, *
100100
# get class counts
101101
counts_pred = self._prediction_counts(x_i, batch_size=batch_size)
102102
top = counts_pred.argsort()[::-1]
103-
# conversion to int
103+
# conversion to int
104104
count1 = int(np.max(counts_pred))
105105
count2 = int(counts_pred[top[1]])
106106

0 commit comments

Comments
 (0)