You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I have seen one possible bug in the tensorflow C&W2 implementation.
The targeted parameter does not pass to function body, instead it is defined with respect to y parameter being None or not. This causes problems when labels are explicitly given in untargeted scenario.
Hello, I have seen one possible bug in the tensorflow C&W2 implementation.
The targeted parameter does not pass to function body, instead it is defined with respect to y parameter being None or not. This causes problems when labels are explicitly given in untargeted scenario.
cleverhans/cleverhans/tf2/attacks/carlini_wagner_l2.py
Line 25 in e5d00e5
cleverhans/cleverhans/tf2/attacks/carlini_wagner_l2.py
Line 82 in e5d00e5
There might be two ways to fix this:
self.targeted = targeted
targeted = None
on the argument list and
in the body
The text was updated successfully, but these errors were encountered: