adversarial-robustness-toolbox icon indicating copy to clipboard operation
adversarial-robustness-toolbox copied to clipboard

Adversarial Robustness Toolbox (ART) - Python Library for Machine Learning Security - Evasion, Poisoning, Extraction, Inference - Red and Blue Teams

Results 222 adversarial-robustness-toolbox issues
Sort by recently updated
recently updated
newest added

# Description This pull request adds the support of the BEYOND Detection method proposed in [1]. [1] Be Your Own Neighborhood: Detecting Adversarial Example by the Neighborhood Relations Built on...

enhancement

# Description In Numpy ```python import numpy as np a = np.array([1.1, 2.2]) print(a.dtype) # dtype('float64') print(a.dtype == None) # True ``` Therefore, comparisons of dtypes should be done with...