CHANGELOG¶
v0.11.2 (07/01/2020)¶
This version brings fixes for a few reported issues with
CAttackand subclasses, along with the new Developers and Contributors guide.
Requirements (1 change)¶
#700 Temporarily pinned
Pillowto v6 to avoid breakingtorchandtorchvisionpackages.
Fixed (7 changes)¶
#698 Fixed
CAttackEvasionCleverhansdefinition ofclass_type.#662 The number of function and gradient evaluations made during double initialization in
CAttackEvasionPGDLSare now correctly considered by.f_evaland.grad_evalproperties.#699 Fixed batch processing in
CClassifierPyTorchnot working properly if the number of samples to be classified is not a multiple ofbatch_size.#691 Function and gradient evaluation counts in
CAttackEvasionCleverhansreturned by.f_evaland.grad_evalproperties now only consider the last optimized sample, consistently with otherCAttacksubclasses.#701 Default value of
double_initparameter inCAttackEvasionPGDLSset to True as originally intended.#684 The solution returned by
COptimizerPGDis now always the best one found during the minimization process.#697 Fixed unittests failing under numpy v1.18 due to a change in the errors raised by
genfromtxt.
Documentation (2 changes)¶
#671 Added Developers and Contributors guide.
#694 Added a new notebook tutorial on advanced evasion attacks using Deep Neural Networks and ImageNet dataset.
v0.11.1 (18/12/2019)¶
Fixed compatibility issues with recently released scikit-learn v0.22 and scipy v1.4.
Fixed (3 changes)¶
#687 Fixed reshaping of sparse arrays to vector-like when using Scipy v1.4.
#686 Replaced deprecated import of
interpfunction from scipy namespace instead of numpy namespace.#668 Fixed unittests failing under scikit-learn v0.22 due to a change in their class output.
v0.11 (02/12/2019)¶
#653 Added new
secml.ml.model_zoopackage, which provides a zoo of pre-trained SecML models. The list of available models will be greatly expanded in the future. See https://secml.gitlab.io/secml.ml.model_zoo.html for more details.#629 Greatly improved the performance of the
grad_f_xmethod forCClassifierandCPreProcessclasses, especially when nested viapreprocessattribute.#613 Support for Python 2.7 is dropped. Python version 3.5, 3.6, or 3.7 is now required.
Requirements (2 changes)¶
#633 The following dependencies are now required:
numpy >= 1.17,scipy >= 1.3.1,scikit-learn >= 0.21matplotlib = 3.#622 Removed dependency on
sixlibrary.
Added (5 changes)¶
#539 Added new core interface to get and set the state of an object instance:
set_state,get_state,save_state,load_state. The state of an object is a simple human-readable Python dictionary object which stores the data necessary to restore an instance to a specific status. Please not that to guarantee the exact match between the original object instance and the restored one, the standard save/load interface should be used.#647 Added new function
core.attr_utils.get_protectedwhich returns a protected attribute from a class (if exists).#629
CClassifierandCPreProcessclasses now provide agradientmethod, which computes the gradient by doing a forward and a backward pass on the classifier or preprocessor function chain, accepting an optional pre-multiplierw.#539 Added new accessible attributes to multiple classes:
CNormalizerMinMax .m .q;CReducerLDA .lda;CClassifierKNN .tr;CClassifierRidge .tr;CClassifierSGD .tr;CClassifierPyTorch .trained.#640 Added
random_stateparameter toCClassifierDecisionTree.
Improved (6 changes)¶
#631 Data objects are now stored using protocol 4 by
pickle_utils.save. This protocol adds support for very large objects, pickling more kinds of objects, and some data format optimizations.#639 Objective function parameter (
objective_function) inCAttackEvasionCleverhansis now correctly populated for the following attacks:CarliniWagnerL2,FastGradientMethod,ProjectedGradientDescent,LBFGS,MomentumIterativeMethod,MadryEtAl,BasicIterativeMethod.#638 The sequence of modifications to the attack point (
x_seqparameter) is now correctly populated inCAttackEvasionCleverhans.#595 A pre-trained classifier can now be passed to
CClassifierRejectThresholdto avoid running fit twice.#627 Slight improvement of
CKernel.gradient()method performance by removing unnecessary calls.#630 Sparse data can now be used in
CKernelHistIntersect.
Changed (2 changes)¶
#616 Renamed
CModelCleverhansto_CModelCleverhansas this class is not supposed to be explicitly used.#111 Default value of the parameter
tolchanged from-inftoNoneinCClassifierSGD. This change should not alter the classifier behavior when using the default parameters.
Fixed (8 changes)¶
#611 Fixed
CDataloaderMNISTcrashing depending on the desired number of samples and digits to load.#652 Number of gradient computations returned by
CAttackEvasionCleverhans.grad_evalis now accurate.#650 Fixed
CAttackEvasionCleverhans.f_evalwrongly returns the number of gradient evaluations.#637 Fixed checks on
y_tagetinCAttackEvasionCleverhanswhich compared the 0 label to untargeted case (y_true = None).#648 Function
core.attr_utils.is_publicnow correctly return False for properties.#649 Fixed wrong use of
core.attr_utils.is_publicinCCreatorandCDatasetHeader.#655 Fixed
CClassifierRejectThreshold.n_classesnot taking into account the rejected class (label -1).#636 Fixed a
TypeErrorraised byCFigure.clabel()when using matplotlib 3.
Removed & Deprecated (4 changes)¶
#628 Method
is_linearofCClassifierandCNormalizersubclasses is now deprecated.#641 Parameter
random_seedofCClassifierLogisticis now deprecated. Userandom_stateinstead.#603 Removed deprecated class
CNormalizerMeanSTD.#603 Removed deprecated parameter
batch_sizefromCKerneland subclasses.
Documentation (4 changes)¶
#625 Reorganized notebooks tutorials into different categories: Machine Learning, Adversarial Machine Learning, and Explainable Machine Learning.
#615 Added a tutorial notebook on the use of Cleverhans library wrapper.
#607 Settings module
secml.settingsis now correctly displayed in the docs.#626 Added missing reference to
CPlotMetricclass in docs.
v0.10 (29/10/2019)¶
#535 Added new package
secml.explanation, which provides different methods for explaining machine learning models. See documentation and examples for more information.#584 [beta] Added
CAttackEvasionCleverhansto support adversarial attacks from CleverHans, a Python library to benchmark vulnerability of machine learning systems to adversarial examples.
Requirements (1 change)¶
#580 PyTorch version
1.3is now supported.
Added (4 changes)¶
#565 Added new abstract interface
CClassifierDNNfrom which new classes implementing Deep Neural Networks can inherit.#555 Added
CNormalizerDNN, which allows using aCClassifierDNNas a preprocessor.#593 Added
CDataLoaderTorchDataset, which allows converting atorchvisiondataset into aCDataset.#598 Added gradient method for
CKernelHistIntersection.
Improved (6 changes)¶
#562 Extended support of
CClassifierPyTorchto nested PyTorch modules.#594
CClassifierPyTorch.load_model()is now able to also load models trained with PyTorch (without using our wrapper). New parameterclassesadded to the method to match classes to indexes in the loaded model.#579 Left side single row/column broadcast is now supported for sparse vs sparse
CArrayoperations.#582 Improved performance of
CNormalizerMeanStdwhen multiple channels are defined.#576 Vastly improved the performance of kernels by removing loops over samples in many classes and refactoring main routines.
#562 Improved
grad_f_xcomputation at a specific layer inCClassifierPyTorch.
Changed (4 changes)¶
#578
CClassifierPyTorchnow inherits fromCClassifierDNN. The following changed accordingly: parametertorch_modelrenamed tomodel; propertylayer_shapesis now defined; methodsave_checkpointremoved.#562 Parameter
layerofCClassifierPyTorch.get_layer_output()is now renamedlayer_namesas a list of layers names is supported (a single layer name is still supported as input). A dictionary is returned if multiple layers are requested. See the documentation for more information.#533 Double initialization in
CAttackEvasionPGDLSwill now be executed regardless of the classifier type (linear or nonlinear) if thedouble_initparameter of.run()method is set toTrue.#591 It is now not required to call the
fitmethod ofCNormalizerMeanSTDif fixed mean/std values are used.
Fixed (4 changes)¶
#561 Fixed
CConstraintBoxnot always applied correctly for float data.#577 Fixed
CClassifierPyTorch.decision_functionapplying preprocess twice.#581 Fixed gradient computation of
CKernelChebyshevDistance.#599 Kernels using distances are now based on negative distances (to correctly represent similarity measures). Affected classes are:
CKernelChebyshevDistance,CKernelEuclidean.
Removed & Deprecated (5 changes)¶
#561 Removed parameter
precisionfromCConstraint.is_violated().#575 Parameter
batch_sizeofCKernelis now deprecated.#597 Removed unused parameter
gammafromCKernelChebyshevDistance.#596 Removed
CKernelHamming.#602 Renamed
CNormalizerMeanSTDtoCNormalizerMeanStd. The old class has been deprecated and will be removed in a future version.
Documentation (5 changes)¶
#538 Added a notebook tutorial on the use of Explainable ML methods provided by the
secml.explanationpackage.#573 Improved visualization of attack results in
07-ImageNettutorial.#610 Fixed spacing between parameter and parameter type in the docs.
#605 Fixed documentation of classes requiring extra components not being displayed.
#608 Added acknowledgments to
README.
v0.9 (11/10/2019)¶
#536 Added
CClassifierPytorchto support Neural Networks (NNs) through PyTorch deep learning platform.
Improved (1 change)¶
#556
CFigure.imshownow supportsPILimages as input.
Changed (1 change)¶
#532 Method
CPreProcess.revert()is now renamed.inverse_transform().
Fixed (1 change)¶
#554 Fixed
CClassifierSkLearn.predict()not working when using pretrained sklearn models.
Documentation (2 changes)¶
#559 Deprecated functions and classes are now correctly visualized in the documentation.
#560 Updated development roadmap accordingly to
0.10,0.11and0.12releases.
Deprecations (3 changes)¶
#532 Method
CPreProcess.revert()is deprecated. Use.inverse_transform()instead.#552
CClassifierKDEis now deprecated. UseCClassifierSkLearnwithsklearn.neighbors.KernelDensityinstead.#553
CClassifierMCSLinearis now deprecated. UseCClassifierSkLearnwithsklearn.ensemble.BaggingClassifierinstead.
v0.8.1 (05/09/2019)¶
This version does not contain any significant change.
Documentation (2 changes)¶
#523 Fixed documentation not compiling under Sphinx v2.2.
#529 Updated roadmap accordingly for v0.9 release.
v0.8 (06/08/2019)¶
First public release!