This release of ART 1.3.1 provides updates to ART 1.3.0.
Added
[None]
Changed
- Changed the method
fit
of the deep-learning classifiersKerasClassifier
,TensorFlowClassifier
,TensorFlowV2Classifier
,PyTorchClassifier
, andMXClassifier
inart.estimators.classification
to support index labels in addition to one-hot-encoded labels. (#479) - Changed the preprocessing defence
art.defences.preprocessing.Mp3Compression
to support input in formatnp.float32
in addition tonp.int16
and updated related notebooks. (#482)
Removed
[None]
Fixed
- Fixed
art.attacks.evasion.DeepFool
to correctly apply the over-shoot step, previously the over-shoot vector was alwasy zero independent ofepsilon
. (#476) - Fixed method
set_params
for attacks with multiple framework-specific implementations (art.attacks.evasion.AdversarialPatch
, andart.attacks.evasion.ProjectedGradientDescent
) to set attributes correctly and updated related notebooks, previously these set attributes would have been ignored by the attack. (#481)