-
Notifications
You must be signed in to change notification settings - Fork 0
/
MLE_ND_P4_SMC.html
67 lines (61 loc) · 2.48 KB
/
MLE_ND_P4_SMC.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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=0.9*device-width">
<title>MLE_ND_P4_SMC</title>
<script src="https://sagecell.sagemath.org/static/embedded_sagecell.js"></script>
<script>$(function () {
sagecell.makeSagecell({inputLocation:'div.linked',linked:true,evalButtonText:'Run Linked Cells'});
sagecell.makeSagecell({inputLocation:'div.sage',evalButtonText:'Run'});
});
</script>
</head>
<style>
@import url('https://fonts.googleapis.com/css?family=Orbitron|Roboto');
body {background-color:ghostwhite;}; a, p {color:#5a8bbd; font-family:'Roboto';}
h1 {color:#1b2c45; font-family:'Orbitron'; text-shadow:4px 4px 4px #ccc;}
h2, h3 {color:slategray; font-family:'Orbitron'; text-shadow:4px 4px 4px #ccc;}
h4 {color:#1b2c45; font-family:'Roboto';}
.sagecell .CodeMirror-scroll {min-height:3em; max-height:48em;}
.sagecell table.table_form tr.row-a {background-color:lightgray;}
.sagecell table.table_form tr.row-b {background-color:ghostwhite;}
.sagecell table.table_form td {padding:5px 15px; color:#5a8bbd; font-family:'Roboto';}
.sagecell_sessionOutput, .sagecell_sessionOutput pre {color:#5a8bbd; font-family:'Roboto';}
</style>
<body>
<h1>Machine Learning Engineer Nanodegree</h1>
<h2>Reinforcement Learning</h2>
<h1>📑 P4: Train a Smartcab to Drive</h1>
<h2>Getting Started</h2>
<h3>Resources</h3>
<a href="https://scikit-learn.org/stable/index.html">🕸scikit-learn. Machine Learning in Python </a>
<a href="http://seaborn.pydata.org/index.html">🕸seaborn: statistical data visualization </a><br/>
<h3>Code Library</h3>
<div class="linked"><script type="text/x-sage">
#unlock to install pyqame
#!python -m pip install --upgrade pip --user
#!python -m pip install pygame --user
sys.path.append('/home/sc_work/.sage/local/lib/python2.7/site-packages')
</script></div>
<p></p>
<div class="linked"><script type="text/x-sage">
import numpy,pylab,pygame,time,warnings
for el in [FutureWarning,UserWarning]: warnings.filterwarnings("ignore",category=el)
</script></div>
<p></p>
<div class="linked"><script type="text/x-sage">
</script></div>
<p></p>
<div class="linked"><script type="text/x-sage">
</script></div>
<p></p>
<div class="linked"><script type="text/x-sage">
</script></div>
<p></p>
<h3>Additional Code Cell</h3>
<div class="linked"><script type="text/x-sage">
</script></div>
<p></p>
</body>
</html>