-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog1.html
120 lines (105 loc) · 4.63 KB
/
blog1.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog1 | vinay patil</title>
<link href="/styles.css" rel="stylesheet" />
</head>
<body>
<nav class="navigation">
<div class="nav-brand">Vinay Patil | Blogs </div>
<ul class="list-non-bullet align-right">
<li class="display-inline">
<a class="link" href="/">home </a>
</li>
<li class="display-inline">
<a class="link" href="/projects.html">Project </a>
</li>
<li class="display-inline">
<a class="link link-active" href="/blogs.html">Blogs </a>
</li>
<li class="display-inline">
<a class="link" href="/contact.html">Contact</a>
</li>
</ul>
</nav>
<small>28 December, 2019</small>
<div class="container-center container">
<h1 class="hero-heading">Title:-<span class="hero-heading-inside"> What is AGI & ANI</span></h1>
<p>Artificial intelligence is one of the most trending topics in the
technology field right now, let's see first what is artificial
intelligence in simple terms. AI is a branch of computer science
that refers to programming machines to think like humans so they
can perform a certain task or a machine that can learn or make
decisions on its own.</p>
<p>Then what is ANI & AGI?
There are three main types of AI :
</p>
<ol>
<li>
Artificial Narrow Intelligence( ANI )
</li>
<li>
Artificial General Intelligence( AGI )
</li>
<li>
Artificilal Super Intelligence ( ASI )
</li>
</ol>
<p>
So here we are only going to talk about important ones's ANI and
AGI, because ASI is a big topic and most of the part of it is
unexplored yet, maybe we will talk about it later.</p>
<h3>Artificial Narrow Intelligence ( ANI ):</h3>
<p>
Artificial Narrow Intelligence is the most important and
successful type of Artificial intelligence, it is an Intelligence which
prominent in performing a single task in which AI outperforms
humans in some very narrow task. And maybe it doesn’t sound
cool to many people but you’ll like it when you get to know more,
Because we are using it right now in our day to day life and many
companies are investing in and implementing ANI to improve
efficiency, cut costs, and automate tasks. Most ANI tasks are
obtained by machine learning algorithms.
</p>
Let’s see the examples of ANI :
<ul>
<li>Self-Driving Cars </li>
<li> Facial Recongnition Tools</li>
<li> Virtual Assitants</li>
<li>Recommendation SystemsSpam Filters </li>
<li>Speech Recognition </li>
</ul>
<h3>Artificial General Intelligence ( AGI ):</h3>
<p>
AGI as the name suggests is General intelligence or human-like
intelligence as you have already seen JARVIS in “Iron Man”, it's
the future of AI. It allows the machine to apply skills and
knowledge in different contexts. It can do many tasks and unlike
ANI it can learn and improve.
There is much research going on to obtain AGI, and some of the
AI experts are also said that maybe it cannot be achieved in the
next 50 years because human consciousness is one of the miracles
of nature, but some of the experts think it would happen before
2060.</p>
</div>
<footer>
<div>
<h3>Connect With Me </h3>
</div>
<div>
<ul class="ul-list">
<li class="list-ele"><a href="https://github.com/engineervinay"><img class="icon" src="/github.svg"></a>
</li>
<li class="list-ele"><a href="https://instagram.com/v.inay.patil"><img class="icon"
src="/instagram.svg"></a></li>
<li class="list-ele"><a href="https://linkedin.com/in/engineervinay"><img class="icon"
src="/linkedin.svg"></a></li>
<li class="list-ele"><a href="https://twitter.com/meengineervinay"><img class="icon"
src="/twitter.svg"></a></li>
</ul>
</div>
</footer>
</body>
</html>