-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
executable file
·103 lines (80 loc) · 5.07 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="author" content="Joaquin Vanschoren">
<title>Machine Learning lectures</title>
<!-- Bootstrap core CSS -->
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" rel="stylesheet">
<link href="https://stackpath.bootstrapcdn.com/bootswatch/4.1.3/flatly/bootstrap.min.css" rel="stylesheet">
<style>.snug{margin-top:-0.75rem;margin-bottom:-0.75rem;margin-right:-1.25rem;}
.roomy{margin-top:40px;}
.lead{margin-top:40px;}
</style>
</head>
<body>
<!-- Navigation -->
<div class="navbar navbar-expand-lg fixed-top navbar-dark bg-primary">
<div class="container">
<a href="https://ml-course.github.io/" class="navbar-brand">Machine Learning lectures</a>
<ul class="nav navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="https://github.com/ML-course/short">GitHub</a>
</li>
</ul>
</div>
</div>
<div class="container" style="margin-top:100px">
<div class="bs-docs-section clearfix" style="min-height:100vh">
<div class="row">
<div class="col-lg-12">
<h1 class="roomy" id="tutorials">Lectures</h1>
<p class="lead" id="dep">Short course</p>
<ul class="list-group">
<li class="list-group-item d-flex justify-content-between showlinks"><span>00 - Prerequisites</span></li>
<li class="list-group-item d-flex justify-content-between showlinks"><span>X1 - Introduction</span></li>
<li class="list-group-item d-flex justify-content-between showlinks"><span>X2 - Fundamental_Algorithms</span></li>
<li class="list-group-item d-flex justify-content-between showlinks"><span>X3 - Evaluation</span></li>
<li class="list-group-item d-flex justify-content-between showlinks"><span>X4 - Feature Engineering</span></li>
<li class="list-group-item d-flex justify-content-between showlinks"><span>H1 - Scikit-Learn Hands-on</span></li>
</ul>
<h1 class="roomy" id="background">Background materials</h1>
<p class="lead">Basic programming</p>
<ul class="list-group">
<li class="list-group-item d-flex justify-content-between showlinks"><span>Tutorial 1 - Python</span></li>
<li class="list-group-item d-flex justify-content-between showlinks"><span>Tutorial 2 - Python for Data Analysis</span></li>
<li class="list-group-item d-flex justify-content-between showlinks"><span>Tutorial 3 - Machine Learning in Python</span></li>
<li class="list-group-item d-flex justify-content-between showlinks"><span>Tutorial 4 - Deep Learning in Python</span></li>
</ul>
<p class="lead roomy">Additional resources</p>
<ul><li><a href="https://github.com/jrjohansson/scientific-python-lectures">Scientific Python Lectures (by J.R. Johansson)</a></li></ul>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer id="footer" style="padding-top:50px">
<div class="container">
<div class="row">
<div class="col-lg-12">
<p>Made with love by <a href="https://joaquinvanschoren.github.io/">Joaquin Vanschoren</a></p>
<p>Materials released under the <a href="https://creativecommons.org/share-your-work/public-domain/cc0">CC0 License</a>. You can use them as you like.</p>
<p>Partly based on notebooks by <a href="https://github.com/amueller/introduction_to_ml_with_python">Andreas Mueller</a> (CC0 licenced), <a href="https://github.com/fchollet/deep-learning-with-python-notebooks">François Chollet</a> (MIT licenced), and <a href="https://github.com/rasbt/python-machine-learning-book-2nd-edition">Sebastian Raschka</a> (MIT licenced)</p>
</div>
</div>
</div>
</footer>
<!-- JavaScript -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"></script>
<script>
$(function() {
$( ".showlinks").each(function() { $(this).append(
"<div class='btn-group snug' role='group'><button type='button' class='btn btn-outline-primary' onclick=\"window.location.href=\'https:\/\/github.com\/joaquinvanschoren\/ML-course\/blob\/master\/notebooks\/"+$(this).find("span").html()+".ipynb\'\")>View</button><button type='button' class='btn btn-outline-primary' onclick=\"window.location.href=\'notebooks\/"+$(this).find("span").html()+".ipynb\'\")>Notebook</button><button type='button' class='btn btn-outline-primary' onclick=\"window.location.href=\'slides_html\/"+$(this).find("span").html()+".slides.html\'\")>HTML</button><button type='button' class='btn btn-outline-primary' onclick=\"window.location.href=\'slides_pdf\/"+$(this).find("span").html()+".pdf\'\")>PDF</button></div>")});;
});
$( ".showpdflink").each(function() { $(this).append(
"<div class='btn-group snug' role='group'><button type='button' class='btn btn-outline-primary' onclick=\"window.location.href=\'slides_pdf\/"+$(this).find("span").html()+".pdf\'\")>PDF</button></div>"
)});
</script>
</body>
</html>