-
Notifications
You must be signed in to change notification settings - Fork 0
/
article.html
33 lines (25 loc) · 897 Bytes
/
article.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<html>
<head>
<title>OpenAdv article</title>
</head>
<body>
<h1>Attacks</h1>
<h2>Params</h2>
<p><code>epsilone</code> is the maximum perturbation that is allowed.</p>
<p><code>alpha</code> is the learning rate.</p>
<p><code>iterations</code> is the number of iterations.</p>
<p><code>target</code> is the target value.</p>
<br/>
<h2>FGSM</h2>
<p>Use <code>epsilone</code> and <code>iterations</code> to attack the model.</p>
<br/>
<h2>TFGSM</h2>
<p>Use <code>epsilone</code>, <code>iterations</code> and <code>target</code> to attack the model.</p>
<br/>
<h2>BIM</h2>
<p>Use <code>epsilone</code>, <code>alpha</code> and <code>iterations</code> to attack the model.</p>
<br/>
<h2>TBIM</h2>
<p>Use <code>epsilone</code>, <code>alpha</code>, <code>iterations</code> and <code>target</code> to attack the model.</p>
<br/>
</html>