-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathassignment5.html
54 lines (39 loc) · 1.25 KB
/
assignment5.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<html>
<head>
<title>6.s198 Assignments 5 </title>
<script src="https://unpkg.com/[email protected]"></script>
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
</head>
<style>
body {margin-top: 50px; margin-left: 10%; margin-right: 10%; font-family:Arial,Verdana, Helvetica, sans-serif; color:black;}
</style>
<body>
<h2>6.S198 code to study and modify for assignment 5:
GAN Networks</h2>
This page runs the script in the file assignment5.js
<p>
When you load this page it will do training and testing. The output
will appear in the Javascript console, not on this Web page.
<br />To work on the assignment, use the Chrome developer tools to view
the console.
<br />
Then edit the .js file and reload the browser page.
</p>
<!--
<p>The script includes a command <em>showimage</em> that you can
run in the console. After training and testing, running
<blockquote>
showimage(<em>n</em>)
</blockquote>
will show the <em>n</em>th test image.
It will appear below on this page.
</p>
-->
<script src="assignment5.js"></script>
<button onclick="runModel('assignment5')">Train Assignment 5 Model</button>
<div id="imageHolder"></div>
<div id="labelHolder">
</div>
<div id="tester" style="width:800px;height:450px;"></div>
</body>
</html>