Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
MindSpore
mindarmour
提交
b69a3032
M
mindarmour
项目概览
MindSpore
/
mindarmour
通知
4
Star
2
Fork
3
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
M
mindarmour
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
b69a3032
编写于
8月 26, 2020
作者:
M
mindspore-ci-bot
提交者:
Gitee
8月 26, 2020
浏览文件
操作
浏览文件
下载
差异文件
!96 keep the type of parameters in fuzzing consistent with that in the called methods
Merge pull request !96 from ZhidanLiu/master
上级
08276a4b
437e61c9
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
19 addition
and
15 deletion
+19
-15
mindarmour/fuzzing/fuzzing.py
mindarmour/fuzzing/fuzzing.py
+11
-11
mindarmour/fuzzing/image_transform.py
mindarmour/fuzzing/image_transform.py
+8
-4
未找到文件。
mindarmour/fuzzing/fuzzing.py
浏览文件 @
b69a3032
...
...
@@ -117,21 +117,21 @@ class Fuzzer:
'Noise'
]
self
.
_attacks_list
=
[
'FGSM'
,
'PGD'
,
'MDIIM'
]
self
.
_attack_param_checklists
=
{
'FGSM'
:
{
'params'
:
{
'eps'
:
{
'dtype'
:
[
float
,
int
],
'range'
:
[
0
,
1
]},
'alpha'
:
{
'dtype'
:
[
float
,
int
],
'FGSM'
:
{
'params'
:
{
'eps'
:
{
'dtype'
:
[
float
],
'range'
:
[
0
,
1
]},
'alpha'
:
{
'dtype'
:
[
float
],
'range'
:
[
0
,
1
]},
'bounds'
:
{
'dtype'
:
[
list
,
tuple
]}}},
'PGD'
:
{
'params'
:
{
'eps'
:
{
'dtype'
:
[
float
,
int
],
'range'
:
[
0
,
1
]},
'eps_iter'
:
{
'dtype'
:
[
float
,
int
],
'range'
:
[
0
,
1
e5
]},
'nb_iter'
:
{
'dtype'
:
[
float
,
int
],
'bounds'
:
{
'dtype'
:
[
tuple
]}}},
'PGD'
:
{
'params'
:
{
'eps'
:
{
'dtype'
:
[
float
],
'range'
:
[
0
,
1
]},
'eps_iter'
:
{
'dtype'
:
[
float
],
'range'
:
[
0
,
1
]},
'nb_iter'
:
{
'dtype'
:
[
int
],
'range'
:
[
0
,
1e5
]},
'bounds'
:
{
'dtype'
:
[
list
,
tuple
]}}},
'bounds'
:
{
'dtype'
:
[
tuple
]}}},
'MDIIM'
:
{
'params'
:
{
'eps'
:
{
'dtype'
:
[
float
,
int
],
'range'
:
[
0
,
1
]},
'params'
:
{
'eps'
:
{
'dtype'
:
[
float
],
'range'
:
[
0
,
1
]},
'norm_level'
:
{
'dtype'
:
[
str
]},
'prob'
:
{
'dtype'
:
[
float
,
int
],
'range'
:
[
0
,
1
]},
'bounds'
:
{
'dtype'
:
[
list
,
tuple
]}}}}
'prob'
:
{
'dtype'
:
[
float
],
'range'
:
[
0
,
1
]},
'bounds'
:
{
'dtype'
:
[
tuple
]}}}}
def
fuzzing
(
self
,
mutate_config
,
initial_seeds
,
coverage_metric
=
'KMNC'
,
eval_metrics
=
'auto'
,
max_iters
=
10000
,
mutate_num_per_seed
=
20
):
...
...
mindarmour/fuzzing/image_transform.py
浏览文件 @
b69a3032
...
...
@@ -350,8 +350,10 @@ class Translate(ImageTransform):
Translate an image.
Args:
x_bias ([int, float): X-direction translation, x=x+x_bias. Default: 0.
y_bias ([int, float): Y-direction translation, y=y+y_bias. Default: 0.
x_bias ([int, float): X-direction translation, x=x+x_bias*image_length.
Default: 0.
y_bias ([int, float): Y-direction translation, y=y+y_bias*image_wide.
Default: 0.
"""
def
__init__
(
self
,
x_bias
=
0
,
y_bias
=
0
):
...
...
@@ -363,8 +365,10 @@ class Translate(ImageTransform):
Set translate parameters.
Args:
x_bias ([float, int]): X-direction translation, x=x+x_bias. Default: 0.
y_bias ([float, int]): Y-direction translation, y=y+y_bias. Default: 0.
x_bias ([float, int]): X-direction translation, x=x+x_bias*image_length.
Default: 0.
y_bias ([float, int]): Y-direction translation, y=y+y_bias*image_wide.
Default: 0.
auto_param (bool): True if auto generate parameters. Default: False.
"""
self
.
auto_param
=
auto_param
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录