forked from d9w/evolution
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path1_tools.html
190 lines (172 loc) · 7.71 KB
/
1_tools.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>1.1 Tools and format</title>
<link rel="stylesheet" href="../reveal/css/reset.css">
<link rel="stylesheet" href="../reveal/css/reveal.css">
<link rel="stylesheet" href="../reveal/css/theme/evo.css">
<!-- <link rel="stylesheet" href="../reveal/css/custom.css"> -->
<!-- Theme used for syntax highlighting of code -->
<link rel="stylesheet" href="../reveal/lib/css/zenburn.css">
<!-- Printing and PDF exports -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? '../reveal/css/print/pdf.css' : '../reveal/css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
</head>
<body>
<div class="reveal">
<div class="slides">
<section>
<h1>Evolutionary Computation</h1>
<h3>Tools and format of the class</h3>
<br />
<img src="../imgs/logo.png" width="30%" height="auto">
</section>
<section>
<h2>Course overview</h2>
<br/>
Two main components:
<br/>
<ul>
<li>a tutorial overview of evolutionary computation</li>
<li>a project focused on game playing with evolved agents</li>
</ul>
<br/>
<br/>
Tutorials:
<br/>
<ol>
<li><a href="https://d9w.github.io/evolution/1_introduction">Introduction</a></li>
<li><a href="https://d9w.github.io/evolution/2_strategies">Evolutionary Strategies</a></li>
<li><a href="https://d9w.github.io/evolution/3_moo">Multi-Objective Evolution</a></li>
<li><a href="https://d9w.github.io/evolution/4_gp">Evolution of programs, graphs, and networks</a></li>
<li><a href="https://d9w.github.io/evolution/5_ops">Genetic representation and operator design</a></li>
<li><a href="https://d9w.github.io/evolution/6_behavior">Evolution and behavior</a></li>
<li><a href="https://d9w.github.io/evolution/7_constraints">Evolution with constraints</a></li>
</ol>
</section>
<section>
<h2>Course format</h2>
<br/>
<ul>
<li>Follow tutorials individually or in groups</li>
<li>Move on to next section on completing exercises</li>
<li>Evaluation by pair: you report on a classmates's notebook</li>
<li>I'll be available during class hours on Discord</li>
<li>Different format for guest lectures</li>
</ul>
</section>
<section>
<h2>Course tools overview</h2>
<br/>
<ul>
<li><a href="https://discordapp.com/">Discord</a> for chat and asking questions</li>
<li><a href="https://zoom.us/">Zoom</a> for meeting</li>
<li><a href="https://github.com/">Git</a> for code sharing and class organization</li>
<li><a href="https://julialang.org/">Julia</a> for tutorial code</li>
<li><a href="https://jupyter.org/">Jupyter</a> for tutorials</li>
</ul>
<br/>
<br/>
<div class="textbox">
<small>
This class is oriented towards a Linux environment, but everything should work on Windows. If you're new to Linux, you can use a virtual machine inside of Windows or OS X; Ubuntu is recommended.
</small></div>
</section>
<section>
<h2>Git</h2>
<br/>
<ul>
<li>A popular <a href="https://git-scm.com/video/what-is-version-control">Version Control System (VCS)</a></li>
<li>Publicly available git servers: <a href="https://github.com/">github</a>, <a href="https://gitlab.com/">gitlab</a>, and <a href="https://www.guru99.com/github-alternative.html">others</a></li>
<li>Get set up on <a href="https://help.github.com/en/github/getting-started-with-github/set-up-git">github</a></li>
<li>Run directly from a <a href="https://git-scm.com/docs/gittutorial">shell</a> or use a <a href="https://git-scm.com/downloads/guis">GUI</a></li>
</ul>
<br/>
<br/>
<img src="../imgs/git.svg" width="80%" height="auto">
</section>
<section>
<h2>Julia</h2>
<br/>
<ul>
<li>Scientific computing language; fast but easy to read and understand</li>
<li>Extensive <a href="https://docs.julialang.org/en/v1/">documentation</a>, <a href="https://juliaacademy.com/">classes</a>, and <a href="https://discourse.julialang.org/">active community</a></li>
<li>Interactive development workflow with <a href="https://junolab.org/">Juno IDE</a>, Jupyter, REPL</li>
</ul>
<br />
<img src="../imgs/benchmarks.svg" width="50%" height="auto">
</section>
<section>
<h2>Jupyter</h2>
<br/>
<ul>
<li>Ju (julia) pyt (python) er (R)</li>
<li>Notebooks: code and text in the browser</li>
<li>Local server with the kernel type</li>
<li><a href="https://github.com/JuliaLang/IJulia.jl">IJulia.jl</a></li>
</ul>
<br/>
<br/>
<img src="../imgs/jupyter.png" width="50%" height="auto">
</section>
<section>
<h2>Exercise</h2>
<h3>Hello World notebook</h3>
<br/>
<ul>
<li>Install Julia and Jupyter</li>
<li>Create a github account</li>
<li><a href="https://help.github.com/en/github/getting-started-with-github/fork-a-repo">Fork</a> this repository</li>
<li>Create a notebook in your fork that prints "Hello world"</li>
<li>Git commit and push your notebook to github</li>
<li>Report your github link in Discord</li>
</ul>
<br/>
<br/>
<div class="textbox">
You can move on to
<a href="https://d9w.github.io/evolution/1_introduction/2_overview.html">the next section</a>
once you've finished this exercise
</div>
</section>
</div>
<div id="footer-container" style="display:none;">
<div id="footer">
Evolutionary Computation by Dennis G. Wilson
<br />
<a href="https://github.com/d9w/evolution/">https://github.com/d9w/evolution/</a>
<br />
<a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-sa/4.0/80x15.png" /></a>
</div>
</div>
</div>
<script src="../reveal/js/reveal.js"></script>
<script src="../reveal/js/jquery-3.5.0.min.js"></script>
<script>
Reveal.initialize({
width: "90%",
height: "90%",
slideNumber: 'c',
transition: 'none',
progress: true,
hash: true,
center: false,
dependencies: [
{ src: '../reveal/plugin/markdown/marked.js' },
{ src: '../reveal/plugin/markdown/markdown.js' },
{ src: '../reveal/plugin/highlight/highlight.js' },
{ src: '../reveal/plugin/notes/notes.js', async: true }
]
});
var footer = $('#footer-container').html();
$('div.reveal').append(footer);
</script>
</body>
</html>