We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 535e305 commit 4559032Copy full SHA for 4559032
art/metrics/verification_decisions_trees.py
@@ -204,10 +204,10 @@ def verify(
204
:return: A tuple of the average robustness bound and the verification error at `eps`.
205
"""
206
if np.min(x) < 0 or np.max(x) > 1:
207
- raise ValueError(
208
- "There are features not in the range [0, 1]. The current implementation only supports normalized input"
209
- "values in range [0 1]."
210
- )
+ raise ValueError(
+ "There are features not in the range [0, 1]. The current implementation only supports normalized input"
+ "values in range [0 1]."
+ )
211
212
self.x: np.ndarray = x
213
self.y: np.ndarray = check_and_transform_label_format(
0 commit comments