-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (69 loc) · 3.29 KB
/
index.html
File metadata and controls
72 lines (69 loc) · 3.29 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
<!DOCTYPE html>
<html>
<head>
<link rel="icon" href="image/icon.png">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
<title>Machine Learning</title>
</head>
<body>
<a href="index.html">
<div style="background-color: rgb(16,14,13);position: relative;color: white;">
<img src="image/title.png" style="height:100px;"><img src="image/title.png" style="height: 100px;transform: scaleX(-1); position: absolute; right: 0%;">
<div style="position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);"><span style="font-size: 50px;"><b>Machine Learning</b></span></div>
</div>
</a>
<!--Nav bar-->
<div class="navbar">
<a href="index.html">Home</a>
<a href="intro.html">Introduction</a>
<a href="Algorithm.html">Algorithm</a>
<a href="app.html">Applications</a>
<span style="float:right;"><a href="Reference.html">Reference</a></span>
</div>
<!--Article-->
<div style="padding:0 30px">
<div>
<h1>Introduction to Machine learning</h1>
<p>Machine learning (ML) is the study of computer algorithms that improve automatically through experience.
It is seen as a part of artificial intelligence. Machine learning algorithms build a model based on sample data,
known as "training data", in order to make predictions or decisions without being explicitly programmed to do so.
Machine learning algorithms are used in a wide variety of applications, such as email filtering and computer vision,
where it is difficult or unfeasible to develop conventional algorithms to perform the needed tasks.</p>
<a href="https://en.wikipedia.org/wiki/Machine_learning">Info from wikipedia</a>
</div>
<br>
<hr>
<br>
</div>
<a href="intro.html">
<div style="padding:1.5% 1.5%; width: 27%; background-color: rgb(43, 43, 43);color: rgb(255, 255, 255);float: left; margin-left: 2%">
<img src="image/Page1.1.jpg" style="width: 100%">
<h3>Introduction</h3>
<p>This section introduce the basic of machine learning and we'll use the examplers to show how machine learning work.</p>
</div>
</a>
<a href="app.html">
<div style="padding:1.5% 1.5%; width: 27%; background-color: rgb(43, 43, 43);color: rgb(255, 255, 255); float: right; margin-right: 2%;">
<img src="image/1.3.png" style="width: 100%">
<h3>Applications</h3>
<p>This section shows the application of machine learnign and how it affect our life.</p>
</div>
</a>
<a href="Algorithm.html">
<div style="padding:1.5% 1.5%; width: 27%; background-color: rgb(43, 43, 43);color: rgb(255, 255, 255); margin-left: 3%; float: left;">
<img src="image/1.2.jpg" style="width: 100%">
<h3>Algorithm</h3>
<p>This section shows the algorithms and math behind machine learning.</p>
</div>
</a>
<div style="clear:both;padding:0 30px">
<br>
<hr>
<footer>
<p><em>Author: Kristopher Zhao<br>
<a href="mailto:350111704@gapps.yrdsb.ca">350111704@gapps.yrdsb.ca</a></em></p>
</footer>
</div>
</body>
</html>