-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmachine_learning_home.html
More file actions
121 lines (116 loc) · 5.31 KB
/
machine_learning_home.html
File metadata and controls
121 lines (116 loc) · 5.31 KB
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
<!DOCTYPE HTML>
<!--
Hyperspace by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>Machine Learning</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
</head>
<body class="is-preload">
<!-- Wrapper -->
<div id="wrapper">
<!-- One -->
<section id="one" class="wrapper style2 spotlights">
<section>
<a href="#" class="image"><img src="images/preprocessing.jpg" alt="" data-position="center center" /></a>
<div class="content">
<div class="inner">
<h2>Preprocessing</h2>
<p>Prepare data for machine learning</p>
<ul class="actions">
<li><a href="machine_learning/preprocessing.html" class="button">Learn more</a></li>
</ul>
</div>
</div>
</section>
<section>
<a href="#" class="image"><img src="images/dimensionality_reduction.jpg" alt="" data-position="top center" /></a>
<div class="content">
<div class="inner">
<h2>Dimensionality Reduction</h2>
<p>Consider less to understand more</p>
<ul class="actions">
<li><a href="machine_learning/dimensionality_reduction.html" class="button">Learn more</a></li>
</ul>
</div>
</div>
</section>
<section>
<a href="#" class="image"><img src="images/model_selection.jpg" alt="" data-position="25% 25%" /></a>
<div class="content">
<div class="inner">
<h2>Model Selection</h2>
<p>Validate and evaluate</p>
<ul class="actions">
<li><a href="machine_learning/model_selection.html" class="button">Learn more</a></li>
</ul>
</div>
</div>
</section>
<section>
<a style="background:white" href="#" class="image"><img src="images/regression.svg" alt="" data-position="25% 25%" /></a>
<div class="content">
<div class="inner">
<h2>Regression</h2>
<p>Fit plots to data</p>
<ul class="actions">
<li><a href="machine_learning/regression.html" class="button">Learn more</a></li>
</ul>
</div>
</div>
</section>
<section>
<a style="background:white" href="#" class="image"><img src="images/classifcation.svg" alt="" data-position="25% 25%" /></a>
<div class="content">
<div class="inner">
<h2>Classification</h2>
<p>Bin data into categories</p>
<ul class="actions">
<li><a href="machine_learning/classification.html" class="button">Learn more</a></li>
</ul>
</div>
</div>
</section>
<section>
<a style="background:white" href="#" class="image"><img src="images/clustering.svg" alt="" data-position="25% 25%" /></a>
<div class="content">
<div class="inner">
<h2>Clustering</h2>
<p>Find groups within data</p>
<ul class="actions">
<li><a href="machine_learning/clustering.html" class="button">Learn more</a></li>
</ul>
</div>
</div>
</section>
</section>
<!-- Footer -->
<footer id="footer" class="wrapper style1-alt">
<div class="inner">
<ul class="menu">
<li>© Hyperspace. All rights reserved.</li><li>Design: <a href="http://html5up.net">HTML5 UP</a></li>
<li>© Preprocessing by <a href="/photographer/bathory909-56923">Valentin Santarosa</a> from <a href="https://freeimages.com/">FreeImages</a></li>
<li>© Dimensionality Reduction by <a href="/photographer/johnnyberg-50785"> John Nyberg</a> from <a href="https://freeimages.com/">FreeImages</a></li>
<li>© Model Selection by <a href="/photographer/textures3d-49653">G. Marcus</a> from <a href="https://freeimages.com/">FreeImages</a></li>
<li>© Regression by <a href="//commons.wikimedia.org/w/index.php/User:Sewaqu">Sewaqu</a> from <a href="https://commons.wikimedia.org/w/index.php?curid=11967659">Wikimedia</a></li>
<li>© Classification by <a href="//commons.wikimedia.org/w/index.php?title=User:ZackWeinberg&amp;action=edit&amp;redlink=1"</a> Zack Weinberg <a href="https://creativecommons.org/licenses/by-sa/3.0" title="Creative Commons Attribution-Share Alike 3.0">CC BY-SA 3.0</a> from <a href="https://commons.wikimedia.org/w/index.php?curid=22877598">Wikimedia</a></li>
<li>© Clustering by <a href="//commons.wikimedia.org/wiki/File:Cluster-2.gif">Wgabrie</a> from <a href="https://commons.wikimedia.org/w/index.php?curid=9442336">Wikimedia</a></li>
</ul>
</div>
</footer>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.scrollex.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>