Browse Source

!84 add 0.7.0 release info

Merge pull request !84 from pkuliuliu/master
tags/v1.2.1
mindspore-ci-bot Gitee 4 years ago
parent
commit
339595a3ee
2 changed files with 28 additions and 2 deletions
  1. +27
    -0
      RELEASE.md
  2. +1
    -2
      setup.py

+ 27
- 0
RELEASE.md View File

@@ -1,3 +1,30 @@
# Release 0.7.0-beta

## Major Features and Improvements

### Differential privacy model training

* Privacy leakage evaluation.

* Using Membership inference to evaluate the effectiveness of privacy-preserving techniques for AI.

### Model robustness evaluation

* Fuzzing based Adversarial Robustness testing.

* Coverage-guided test set generation.

## Bugfixes

## Contributors

Thanks goes to these wonderful people:

Liu Liu, Xiulang Jin, Zhidan Liu, Luobin Liu and Huanhuan Zheng.

Contributions of any kind are welcome!


# Release 0.6.0-beta

## Major Features and Improvements


+ 1
- 2
setup.py View File

@@ -18,7 +18,7 @@ from setuptools import setup
from setuptools.command.egg_info import egg_info
from setuptools.command.build_py import build_py

version = '0.6.0'
version = '0.7.0'
cur_dir = os.path.dirname(os.path.realpath(__file__))
pkg_dir = os.path.join(cur_dir, 'build')

@@ -95,7 +95,6 @@ setup(
license='Apache 2.0',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
cmdclass={
'egg_info': EggInfo,
'build_py': BuildPy,


Loading…
Cancel
Save