-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
32 lines (28 loc) · 1.76 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bluff: Interactively Deciphering Adversarial Attacks on Deep Neural Networks</title>
<link rel="stylesheet" href="./code/frontend/css/main.css"/>
<link rel="stylesheet" href="./code/frontend/css/header.css"/>
<link rel="stylesheet" href="./code/frontend/css/left-attack-control.css"/>
<link rel="stylesheet" href="./code/frontend/css/left-filter-pathways.css"/>
<link rel="stylesheet" href="./code/frontend/css/left-highlight-pathways.css"/>
<link rel="stylesheet" href="./code/frontend/css/left-attack-compare.css"/>
<link rel="stylesheet" href="./code/frontend/css/attribution-graph.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.8.2/css/all.min.css" />
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet"/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.4.11/d3.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
</head>
<body>
<script src="https://d3js.org/d3.v5.js"></script>
<script type="module" src="./code/frontend/js/constant.js"></script>
<script type="module" src="./code/frontend/js/main.js"></script>
<script type="module" src="./code/frontend/js/header.js"></script>
<script type="module" src="./code/frontend/js/left_attack_control.js"></script>
<script type="module" src="./code/frontend/js/left_filter_pathways.js"></script>
<script type="module" src="./code/frontend/js/left_highlight_pathways.js"></script>
<script type="module" src="./code/frontend/js/left_attack_compare.js"></script>
<script type="module" src="./code/frontend/js/attribution_graph.js"></script>
</body>
</html>