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 27e4c81 commit c3eb480Copy full SHA for c3eb480
art/attacks/evasion/auto_attack.py
@@ -330,7 +330,7 @@ def __repr__(self) -> str:
330
)
331
auto_attack_meta = (
332
f"AutoAttack(targeted={self.targeted}, parallel_pool_size={self.parallel_pool_size}, "
333
- + "num_attacks={len(self.args)})"
+ + f"num_attacks={len(self.args)})"
334
335
return f"{auto_attack_meta}\nBestAttacks:\n{best_attack_meta}"
336
@@ -342,7 +342,7 @@ def __repr__(self) -> str:
342
343
344
345
- + "num_attacks={len(self.attacks)})"
+ + f"num_attacks={len(self.attacks)})"
346
347
348
0 commit comments