-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.html
More file actions
74 lines (74 loc) · 4.54 KB
/
app.html
File metadata and controls
74 lines (74 loc) · 4.54 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
<!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">
<h1>Applications</h1>
<p>It seems the linear regrassion or coloring is beautiful and usful in science, but they do not
affect our life directly. However, it's not true, machine learning has affected our life any where.
</p>
<div class="app">
<img src="image/3.1.jpg" style="width: 200px;float: right;">
<h2>Image Recognition</h2>
Image recognition is one of the most common applications of machine learning. It is used to identify objects, persons, places, digital images, etc. The popular use case of image recognition and face detection is, Automatic friend tagging suggestion:
<br>
Facebook provides us a feature of auto friend tagging suggestion. Whenever we upload a photo with our Facebook friends, then we automatically get a tagging suggestion with name, and the technology behind this is machine learning's face detection and recognition algorithm.
</div>
<div class="app">
<img src="image/3.2.jpg" style="width: 200px;float: right;">
<h2>Speech Recognition</h2>
While using Google, we get an option of "Search by voice," it comes under speech recognition, and it's a popular application of machine learning.
<br>
Speech recognition is a process of converting voice instructions into text, and it is also known as "Speech to text", or "Computer speech recognition."
At present, machine learning algorithms are widely used by various applications of speech recognition. Google assistant, Siri, Cortana, and Alexa are using
speech recognition technology to follow the voice instructions.
</div>
<div class="app">
<img src="image/3.3.png" style="width: 200px;float: right;">
<h2>Traffic prediction</h2>
If we want to visit a new place, we take help of Google Maps, which shows us the correct path with the shortest route and predicts the traffic conditions.
<br>
It predicts the traffic conditions such as whether traffic is cleared, slow-moving, or heavily congested with the help of two ways:
<ul style="list-style-type:disc;">
<li>Real Time location of the vehicle form Google Map app and sensors</li>
<li>Average time has taken on past days at the same time.</li>
</ul>
Everyone who is using Google Map is helping this app to make it better. It takes information from the user and sends back to its database to improve the performance.
</div>
<div class="app">
<img src="image/3.4.png" style="width: 200px;float: right;">
<h2>Product recommendations</h2>
Machine learning is widely used by various e-commerce and entertainment companies such as Amazon, Netflix, etc., for product recommendation to the user. Whenever we search for some product on Amazon, then we started getting an advertisement for the same product while internet surfing on the same browser and this is because of machine learning.
<br>
Google understands the user interest using various machine learning algorithms and suggests the product as per customer interest.
<br>
As similar, when we use Netflix, we find some recommendations for entertainment series, movies, etc., and this is also done with the help of machine learning.
</div>
<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>