Releases: pralab/secml
Releases · pralab/secml
v0.15.3
v0.15.2
v0.15.1
v0.15
CHANGELOG
- Migration to www.github.com
v0.14.1
See full release here: https://gitlab.com/secml/secml/-/releases/v0.14.1
CHANGELOG
- This version brings fixes for a few issues with the optimizers and related classes, along with improvements to documentation for all attacks, optimizers, and related classes.
Fixed (3 changes)
- #923 Fixed
COptimizerPGDLSandCOptimizerPGDLSnot working properly if the classifier's gradient has multiple components with the same (max) value. - #919 Fixed
CConstraintL1crashing when projecting sparse data using default center value (scalar 0). - #920 Fixed inconsistent results between dense and sparse data for
CConstraintL1projection caused by type casting.
Removed & Deprecated (1 change)
- #922 Removed unnecessary parameter
discretefromCOptimizerPGDLSandCOptimizerPGDExp.
Documentation (2 changes)
- #100017 Improved documentation of
CAttackEvasion,COptimizer,CLineSearch, and corresponding subclasses. - #918 Installing the latest stable version of RobustBench instead of the master version.
v0.14
See full release here: https://gitlab.com/secml/secml/-/releases/v0.14
CHANGELOG
- #795 Added new package
adv.attacks.evasion.foolboxwith a wrapper for Foolbox. - #623
secmlis now tested for compatibility with Python 3.8. - #861 N-Dimensional input is now accepted by
CArray. - #853 Added new notebook tutorial with an application on Android Malware Detection.
- #859 Add a new tutorial notebook containing example usage and attack against RobustBench models.
- #898 Added “Open in Colab” button to all tutorial notebooks.
- #845 Static Application Security Testing (SAST) using bandit is now executed during testing process.
Requirements (5 changes)
- #623
secmlis now tested for compatibility with Python 3.8. - #623 The following dependencies are now required:
scipy >= 1.3.2,scikit-learn >= 0.22,matplotlib >= 3. - #623 The
pytorchextra component now installs:torch >= 1.4,torchvision >= 0.5. - #623 The
cleverhansextra component is now available on Python < 3.8 only, due totensorflow 1compatibility. - #822 Dropped official support of Python 3.5, which reached End Of Life on 13 Sep 2020. SecML may still be usable in the near future on Python 3.5 but we stopped running dedicated tests on this interpreter.
Added (3 changes)
- #795 Added new package
adv.attacks.evasion.foolboxwith a wrapper for Foolbox. - #880 Added new
shapeparameter to the followingCArraymethods:get_data,tondarray,tocsr,tocoo,tocsc,todia,todok,tolil,tolist. The reshaping operation is performed after casting the array to the desired output data format. - #855 Added new ROC-related performance metrics:
CMetricFNRatFPR,CMetricTHatFPR,CMetricTPRatTH,CMetricFNRatTH.
Improved (3 changes)
- #861 N-Dimensional input is now accepted by
CArray. If the number of dimensions of input data is higher than 2, the data is reshaped to 2 dims, and the original shape is stored in the new attributeinput_shape. - #910 The MNIST dataset loader
CDataLoaderMNISTnow downloads the files from our model-zoo mirror (https://gitlab.com/secml/secml-zoo/-/tree/datasets/MNIST). - #886 Torch datasets now stored by
CDataLoaderTorchDatasetin a "pytorch" subfolder ofSECML_DS_DIRto avoid naming collisions.
Fixed (8 changes)
- #897 Fixed crash in
CAttackPoisoningwheny_target != Nonedue to missing broadcasting to expected shape. - #873 Use equality instead of identity to compare literals (fixing related SyntaxWarning in Python 3.8).
- #867 Now calling
StandardScaler,CScalerNorm,CScalerMinMaxarguments using keywords to fix scikit futurewarning in version 0.23 or later. - #870 Filtering "DeprecationWarning: tostring() is deprecated. Use tobytes() instead." raised by tensorflow 1.15 if numpy 1.19 is installed.
- #868 Correctly escaping latex commands in docstrings to avoid "DeprecationWarning: invalid escape sequence \s".
- #871 Fixed
ValueError: k exceeds matrix dimensionsnot raised by scipy v1.5 if akoutside the array dimensions is used to extract a diagonal. - #872 Fixed scipy 1.5 not always keeping the dtype of the original array during getitem (especially if the result is an empty array).
- #888 Filter warning raised by torchvision mnist loader first time you download.
Removed & Deprecated (2 changes)
- #875 Removed parameter
frameonfromCFigure.savefigas it is deprecated in matplotlib >= 3.1. - #875 Removed parameter
papertypefromCFigure.savefigas it is deprecated in matplotlib >= 3.3.
Documentation (10 changes)
- #853 Added new notebook tutorial with an application on Android Malware Detection.
- #859 Add a new tutorial notebook containing example usage and attack against RobustBench models.
- #898 Added "Open in Colab" button to all tutorial notebooks.
- #899 Added "Edit on Gitlab" button to doc pages.
- #900 Moved notebook 11 "Evasion Attacks on ImageNet (Computer Vision)" to "Applications" section.
- #905 Changed image used by notebook 8, as the previous one is no more available.
- #903 Updated roadmap page in documentation.
- #890 Fixed multiple typos and improved language in the README.
- #878 Updated intersphinx mapping for numpy's documentation.
- #850 Fixed
MNISTtypo in notebook 10.
v0.13
See full release here: https://gitlab.com/secml/secml/-/releases/v0.13
CHANGELOG
- #814 Added new evasion attack
CAttackEvasionPGDExp. - #780 Added new classifier
CClassifierDNRimplementing Deep Neural Rejection (DNR). See Sotgiu et al. “Deep neural rejection against adversarial examples”, EURASIP J. on Info. Security (2020). - #47 Added new classifier
CClassifierMulticlassOVOimplementing One-vs-One multiclass classification scheme. - #765 Extended
CModuleto support trainable modules viafitandfit_forwardfunctions. - #800 Security evaluation can now be run using Cleverhans attacks. The name of the parameter to check should be specified as
attack_params.<param_name>as an input argument for the constructor ofCSecEval. - #839 Experimental support of Windows operating system (version 7 or later).
Requirements (1 change)
- #768 Removed temporary pin of Pillow to v6 which used to break torch and torchvision packages.
Added (4 changes)
- #100007 Added new experimental package
ml.scalerswith a different implementation ofml.features.normalizationclasses directly based Scikit-Learn's scalers. Included classes are:CScalerMinMax,CScalerStd,CScalerNorm. - #770 Added new methods to convert a
CArrayto specificscipy.sparsearray formats:tocoo,tocsc,todia,todok,tolil. - #812
CAttackPoisoningnow exposes:x0,xc,yc,objective_functionandobjective_function_gradient. - #776
n_jobsis now a init parameter ofCModuleand subclasses and not passed viafitanymore.
Improved (12 changes)
- #817 Added
CClassifierSVMnative support to OVA multiclass scheme, without replicating the kernel in each one-vs-all classifier. - #574 Added
_clear_cachemechanism toCModuleand classes that require caching data in the forward pass before backward (e.g., exponential kernels do that to avoid re-computing the kernel matrix in the backward pass). - #820 Add parallel execution of
forwardmethod forCClassifierMulticlassOVAandCClassifierMulticlassOVO. - #815 Simplified
CAttackinterface (now only requires implementingrunas required byCSecEval). - #574 Modified kernel and classifier interfaces to allow their use as preprocessing modules.
- #775 Improved efficiency in gradient computation of SVMs, by back-propagating the alpha values to the kernel.
- #773 Improved efficiency in the computation of gradients of evasion attacks (
CAttackEvasionPGDLS). Now gradient is called once rather than twice to compute the gradient of the objective function. - #801
CSecEvalwill now check that theparam_nameinput argument can be found in the attack class used in the evaluation. - #695
COptimizerPGDnow exits optimization if constraint radius is 0.COptimizerPGD,COptimizerPGDLSandCOptimizerPGDExpwill now raise a warning if the 0-radius constraint is defined outside the given bounds. - #828
CClassifierSVMnow usesn_jobsparameter for parallel execution of training in case of multiclass datasets. - #767 Using
scipy.sparse.hstackand.vstackinstead of a custom implementation inCSparse.concatenate. - #772 Using
scipy.sparse.argminand.argmaxinstead of a custom implementation inCSparse.argminandCSparse.argmax.
Changed (6 changes)
- #817 Kernel is now used as preprocess in
CClassifierSVM. - #817 Removed
store_dual_varsandkernel.setterfromCClassifierSVM. Now a linear SVM is trained in the primal (w,b) ifkernel=None, otherwise it is trained in the dual (alpha and b), on the precomputed training kernel matrix. - #765 Unified
fitinterface fromfit(ds)tofit(x,y)to be consistent across normalizers and classifiers. - #574 Removed redundant definitions of
gradient(x, w)fromCKernelRBF,CKernelLaplacian,CKernelEuclidean,CClassifierDNN,CNormalizerUnitNorm. The protected propertygrad_requires_forwardnow specifies if gradient has to compute an explicit forward pass or only propagate the inputxthrough the pre-processing chain before callingbackward. - #823 Removed
surrogate_dataparameter fromCAttackPoisoningand renamed it todouble_init_dsinCAttackEvasionsubclasses. - #829
CClassifierRejectThresholdnow returns wrapped classifier classes plus the reject class (-1).
Fixed (10 changes)
- #816 Fixed stop condition of
COptimizerPGDwhich was missing indexi. - #825 Infer the number of attacked classifier classes directly from it (instead of inferring it from surrogate data) in
CAttackEvasionPGDLSto fix a crash when the class index of data points is greater or equal than the number of alternative data points. - #810 Fixed
CClassifierPyTorch.backwardnot working properly due to a miscalculation of the number of input features of the model when aCNormalizeDNNis used as preprocessor. - #803 Fixed checks on the inner classifier in
CClassifierRejectThresholdwhich can be bypassed by using the clf attribute setter, now removed. - #818 Fixed
CCreator.setnot allowing to set writable attributes of level-0 readable-only attributes. - #819 Fixed
CCreator.get_paramsnot returning level-0 not-writable attributes having one or more writable attributes. - #785 Fixed constant override of matplotlib backend in
CFigureon Windows systems. - #783 Fixed
model_zoo.load_modelimproperly building download urls depending on the system default url separator. - #771 Fixed the following methods of
CSparseto ensure they properly work independently from the sparse array format:save,load,__pow__,round,nan_to_num,logical_and,unique,bincount,prod,all,any,min,max. - #769
CArray.tocsr()now always returns ascipy.sparse.csr_matrixarray as expected.
Removed & Deprecated (2 changes)
- #540 Removed
discreteandsurrogate_classifierparameter fromCAttack. - #777 Deprecated attribute
kernelis now removed fromCClassifierSGD,CClassifierRidgeandCClassifierLogisticclassifiers.
Documentation (10 changes)
- #839 Windows is now displayed as a supported Operating System in README and setup.
- #806 Documented pytorch extra component installation requirements under Windows.
- #834 Temporarily pinned
numpydocto< 1.1to avoid compatibility issues of the newest version. - #807 Documentation is now built using Sphinx https://readthedocs.org/ theme v0.5 or higher.
- #830 Fixed links to repository pages by adding a dash after project name.
- #758 Added a direct link to the gitlab.com repository in README.
- #788 Notebooks now include a warning about the required extra components (if any).
- #787 Fixed argmin -> argmax typo in docstring of
CClassifierRejectThreshold.predictmethod. - #789 Fixed notebook 4 not correctly generating a separate dataset for training the target classifiers.
- #791 Fixed
random_statenot set forCClassifierDecisionTreein notebook 4.