<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Artificial Intelligence Archives -</title>
	<atom:link href="https://mitindia.in/tag/artificial-intelligence/feed/" rel="self" type="application/rss+xml" />
	<link>https://mitindia.in/tag/artificial-intelligence/</link>
	<description></description>
	<lastBuildDate>Thu, 31 Dec 2020 05:50:36 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://mitindia.in/wp-content/uploads/2023/03/cropped-android-chrome-512x512-1-32x32.png</url>
	<title>Artificial Intelligence Archives -</title>
	<link>https://mitindia.in/tag/artificial-intelligence/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Face recognition using Python</title>
		<link>https://mitindia.in/face-recognition-using-python/</link>
		
		<dc:creator><![CDATA[SKB]]></dc:creator>
		<pubDate>Thu, 31 Dec 2020 05:50:36 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Artificial Intelligence]]></category>
		<category><![CDATA[face recognition]]></category>
		<category><![CDATA[machine learning]]></category>
		<guid isPermaLink="false">http://www.mitindia.in/?p=1094</guid>

					<description><![CDATA[<p>Face detection In this machine learning example identify face using Python programming. Package  used in this example is opencv [computer vision]. To install this package simply use following syntax: pip install opencv-python import cv2 #pip install opencv-python # Load the cascade face_cascade = cv2.CascadeClassifier('face_detector.xml') # Read the input image img = cv2.imread('test2.jpg') # Detect faces [&#8230;]</p>
<p>The post <a href="https://mitindia.in/face-recognition-using-python/">Face recognition using Python</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></description>
										<content:encoded><![CDATA[<h1>Face detection</h1>
<p>In this machine learning example identify face using Python programming.</p>
<blockquote><p>Package  used in this example is <strong>opencv</strong> [computer vision]. To install this package simply use following syntax:<br />
<strong>pip install opencv-python</strong></p></blockquote>
<pre class="EnlighterJSRAW" data-enlighter-language="null">import cv2 #pip install opencv-python
# Load the cascade
face_cascade = cv2.CascadeClassifier('face_detector.xml')
# Read the input image
img = cv2.imread('test2.jpg')
# Detect faces
faces = face_cascade.detectMultiScale(img, 1.1, 4)
# Draw rectangle around the faces
for (x, y, w, h) in faces: 
  cv2.rectangle(img, (x, y), (x+w, y+h), (255, 0, 0), 5) 

#show on screen begins
cv2.imshow('img',img)
cv2.waitKey(0)
cv2.destroyAllWindows()

# Export the result
cv2.imwrite("face_detected.png", img) 
print('Successfully saved')
</pre>
<p><strong>output of the above program is : </strong></p>
<p><img decoding="async" class="alignnone  wp-image-1096" src="http://www.mitindia.in/wp-content/uploads/2020/12/facerec-1-300x233.png" alt="" width="236" height="183" srcset="https://mitindia.in/wp-content/uploads/2020/12/facerec-1-300x233.png 300w, https://mitindia.in/wp-content/uploads/2020/12/facerec-1.png 761w" sizes="(max-width: 236px) 100vw, 236px" /></p>
<p><a href="https://github.com/opencv/opencv/blob/master/data/haarcascades/haarcascade_frontalface_default.xml" target="_blank" rel="noopener">To download haarcascade face detector xml file follow this link.</a></p>
<p><a class="a2a_button_whatsapp" href="https://www.addtoany.com/add_to/whatsapp?linkurl=https%3A%2F%2Fmitindia.in%2Fface-recognition-using-python%2F&amp;linkname=Face%20recognition%20using%20Python" title="WhatsApp" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_facebook" href="https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Fmitindia.in%2Fface-recognition-using-python%2F&amp;linkname=Face%20recognition%20using%20Python" title="Facebook" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fmitindia.in%2Fface-recognition-using-python%2F&#038;title=Face%20recognition%20using%20Python" data-a2a-url="https://mitindia.in/face-recognition-using-python/" data-a2a-title="Face recognition using Python"><img src="https://static.addtoany.com/buttons/favicon.png" alt="Share"></a></p><p>The post <a href="https://mitindia.in/face-recognition-using-python/">Face recognition using Python</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Data Science &#8211; 4 [extract gold price using web scrap]</title>
		<link>https://mitindia.in/data-science-4-extract-gold-price-using-web-scrap/</link>
		
		<dc:creator><![CDATA[SKB]]></dc:creator>
		<pubDate>Thu, 31 Dec 2020 05:31:11 +0000</pubDate>
				<category><![CDATA[Artificial Intelligence]]></category>
		<category><![CDATA[Machine Learning]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[data science]]></category>
		<category><![CDATA[machine learning]]></category>
		<category><![CDATA[webscrap]]></category>
		<guid isPermaLink="false">http://www.mitindia.in/?p=1090</guid>

					<description><![CDATA[<p>Extract live gold price using web scrap &#8211; Data Science in the following example we used three packages, they are a) bs4 [Beautiful Soup for web scraping] b) pandas [panel data for data representation ] c) request [to get source / url] #data science with Python - extracting Gold Price import bs4 import pandas as [&#8230;]</p>
<p>The post <a href="https://mitindia.in/data-science-4-extract-gold-price-using-web-scrap/">Data Science &#8211; 4 [extract gold price using web scrap]</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></description>
										<content:encoded><![CDATA[<h1>Extract live gold price using web scrap &#8211; Data Science</h1>
<p>in the following example we used three packages, they are</p>
<p>a) bs4 [Beautiful Soup for web scraping]<br />
b) pandas [panel data for data representation ]<br />
c) request [to get source / url]</p>
<pre class="EnlighterJSRAW" data-enlighter-language="null">#data science with Python - extracting Gold Price
import bs4 
import pandas as pd 
import requests 

url = 'https://www.goodreturns.in/gold-rates/bangalore.html'
result = requests.get(url) 
soup = bs4.BeautifulSoup(result.content,'html.parser') 
price = soup.find_all('div', {"id":"current-price"})
for pr in price:
    print("Price:", pr.text)
txt=pr.text

from tkinter import *
root=Tk()
root.title('Gold Price')
root.configure(bg='gold')
root.geometry('200x100')
w=Label(root, text=txt, bg='red', font='sans 14')
b=Button(root, text="Close", fg='red', bg='yellow', command=root.destroy)
w.pack()
b.pack()
root.mainloop()</pre>
<p><strong>Output of the above example is:</strong></p>
<p><img decoding="async" class="alignnone  wp-image-1091" src="http://www.mitindia.in/wp-content/uploads/2020/12/goldprice-300x107.png" alt="" width="362" height="129" srcset="https://mitindia.in/wp-content/uploads/2020/12/goldprice-300x107.png 300w, https://mitindia.in/wp-content/uploads/2020/12/goldprice.png 495w" sizes="(max-width: 362px) 100vw, 362px" /></p>
<p><a href="https://www.mitindia.in/data-science-3-web-scraping/">Click here for other programs on Data Science </a></p>
<p><a class="a2a_button_whatsapp" href="https://www.addtoany.com/add_to/whatsapp?linkurl=https%3A%2F%2Fmitindia.in%2Fdata-science-4-extract-gold-price-using-web-scrap%2F&amp;linkname=Data%20Science%20%E2%80%93%204%20%5Bextract%20gold%20price%20using%20web%20scrap%5D" title="WhatsApp" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_facebook" href="https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Fmitindia.in%2Fdata-science-4-extract-gold-price-using-web-scrap%2F&amp;linkname=Data%20Science%20%E2%80%93%204%20%5Bextract%20gold%20price%20using%20web%20scrap%5D" title="Facebook" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fmitindia.in%2Fdata-science-4-extract-gold-price-using-web-scrap%2F&#038;title=Data%20Science%20%E2%80%93%204%20%5Bextract%20gold%20price%20using%20web%20scrap%5D" data-a2a-url="https://mitindia.in/data-science-4-extract-gold-price-using-web-scrap/" data-a2a-title="Data Science – 4 [extract gold price using web scrap]"><img src="https://static.addtoany.com/buttons/favicon.png" alt="Share"></a></p><p>The post <a href="https://mitindia.in/data-science-4-extract-gold-price-using-web-scrap/">Data Science &#8211; 4 [extract gold price using web scrap]</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Internet of Things</title>
		<link>https://mitindia.in/internet-of-things-io/</link>
					<comments>https://mitindia.in/internet-of-things-io/#comments</comments>
		
		<dc:creator><![CDATA[SKB]]></dc:creator>
		<pubDate>Tue, 02 Apr 2019 10:04:48 +0000</pubDate>
				<category><![CDATA[Artificial Intelligence]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Internet of things]]></category>
		<category><![CDATA[IoT]]></category>
		<category><![CDATA[machine learning]]></category>
		<guid isPermaLink="false">http://www.mitindia.in/?p=943</guid>

					<description><![CDATA[<p>What is IoT / Internet of Things? The Internet of Things is a term which describes how the different devices connect together to transmit data using the network.  The IoT is an expansion of a computer network where one can easily use on other devices like home appliances, smart tv&#8217;s, fitness trackers, robotics vacuum cleaner, [&#8230;]</p>
<p>The post <a href="https://mitindia.in/internet-of-things-io/">Internet of Things</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></description>
										<content:encoded><![CDATA[<h1>What is IoT / Internet of Things?</h1>
<p>The Internet of Things is a term which describes how the different devices connect together to transmit data using the network. <img fetchpriority="high" decoding="async" class="size-medium wp-image-944 alignright" src="http://www.mitindia.in/wp-content/uploads/2019/04/IoT-300x289.png" alt="Internet of Things" width="300" height="289" srcset="https://mitindia.in/wp-content/uploads/2019/04/IoT-300x289.png 300w, https://mitindia.in/wp-content/uploads/2019/04/IoT.png 665w" sizes="(max-width: 300px) 100vw, 300px" /></p>
<p>The IoT is an expansion of a computer network where one can easily use on other devices like home appliances, smart tv&#8217;s, fitness trackers, robotics vacuum cleaner, etc.</p>
<p>So far we have been uysing internet on our Personal computer or Laptop or on our smartphones that&#8217;s just for the sake of information exchange but IoT gave huge opportunities to explore the use of the internet on other said devices and work become smarter.</p>
<h4><span style="color: #ff0000;">7 Main Characteristics of IoT</span></h4>
<p>1) Connectivity: Here devices need to be connected.<br />
2) Things: devices which are designed to be connected.<br />
3) Data: Source of Internet<br />
4) Intelligence: Sensing data using Artificial Intelligence or Data Analytics etc.<br />
5) Action: Where real usage of data takes place.<br />
6) Ecosystem: in community goals, organizational goals, etc.<br />
7) Communication: devices get connected so there is a flow of data between machine to machine (M2M).</p>
<p><span style="color: #ff0000;"><strong>Types of IoT</strong></span></p>
<p>a) Industrial IoT : Improving operational efficiency etc.<br />
b) IoE : Internet of everything like People, process, data etc.<br />
c) CIoT : Consumer Internet of Things like Home appliances, smart Tv&#8217;s, etc.</p>
<p>IoT is based on the industry standard of IEEE.</p>
<p><span style="color: #ff0000;"><strong>Applications of IoT</strong></span></p>
<p><strong>Home automation</strong>: control and automation of lighting, ventilation, air conditioning, robotic vacuums, air purifiers.</p>
<p><strong>Wearable</strong>: smart watches, fitness trackers, VR etc.</p>
<p><strong>Environment</strong>: IoT application technologies that have sensors can be used to monitor air and water quality, soil or atmospheric conditions, and even the movements of wildlife.</p>
<p>The IoT devices can also be used in applications such as tsunami early-warning systems to enable authorities to offer more effective responses and aid.</p>
<p><strong>Utilities</strong>: real-time grid assessment.</p>
<p><strong>Logistics</strong>: real-time visibility of location.</p>
<p><strong><span style="color: #ff0000;">How IoT works</span></strong><br />
To work IoT, the following are essentials</p>
<p>a) Hardware (to communicate other devices)<br />
b) Protocols (set rules to transmit data)<br />
c) Domains (locations to store data)<br />
d) Applications (software to communicate with devices)</p>
<p><a href="https://www.youtube.com/watch?v=3WsiDemfAak" target="_blank" rel="noopener">You can also check out my video in Hindi on IoT</a></p>
<p><a class="a2a_button_whatsapp" href="https://www.addtoany.com/add_to/whatsapp?linkurl=https%3A%2F%2Fmitindia.in%2Finternet-of-things-io%2F&amp;linkname=Internet%20of%20Things" title="WhatsApp" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_facebook" href="https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Fmitindia.in%2Finternet-of-things-io%2F&amp;linkname=Internet%20of%20Things" title="Facebook" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fmitindia.in%2Finternet-of-things-io%2F&#038;title=Internet%20of%20Things" data-a2a-url="https://mitindia.in/internet-of-things-io/" data-a2a-title="Internet of Things"><img src="https://static.addtoany.com/buttons/favicon.png" alt="Share"></a></p><p>The post <a href="https://mitindia.in/internet-of-things-io/">Internet of Things</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://mitindia.in/internet-of-things-io/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Artificial  Intelligence</title>
		<link>https://mitindia.in/artificial-intelligence/</link>
		
		<dc:creator><![CDATA[SKB]]></dc:creator>
		<pubDate>Tue, 20 Mar 2018 05:13:20 +0000</pubDate>
				<category><![CDATA[Machine Learning]]></category>
		<category><![CDATA[ai]]></category>
		<category><![CDATA[Artificial Intelligence]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[lisp]]></category>
		<category><![CDATA[machine learning]]></category>
		<category><![CDATA[prolog]]></category>
		<category><![CDATA[python]]></category>
		<guid isPermaLink="false">http://www.mitindia.in/?p=861</guid>

					<description><![CDATA[<p>What is Artificial Intelligence (AI)? According to John McCarthy, AI is an ability to interact with the world in the form of speech, vision, motion, manipulation etc. or Ability to model the world and to reason about it. or Ability to learn and to adapt rapidly. Future goals of AI To build systems that exhibit [&#8230;]</p>
<p>The post <a href="https://mitindia.in/artificial-intelligence/">Artificial  Intelligence</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2><span style="color: #ff0000;">What is Artificial Intelligence (AI)?</span></h2>
<p><em>According to John McCarthy, AI is an ability to interact with the world in the form of speech, vision, motion, manipulation etc.</em><br />
or <em>Ability to model the world and to reason about it</em>.<br />
or <em>Ability to learn and to adapt rapidly.</em></p>
<p><img loading="lazy" decoding="async" class="size-medium wp-image-862 alignright" src="http://www.mitindia.in/wp-content/uploads/2018/03/AI-300x200.jpg" alt="Artificial Intelligence" width="300" height="200" /></p>
<p><strong><span style="color: #3366ff;">Future goals of AI</span><br />
</strong>To build systems that exhibit intelligent behaviour<br />
To understand intelligence in order to model it</p>
<p><span style="color: #3366ff;"><strong>A Brief History of AI</strong></span><br />
In 1955, Newell and Simon created the first AI program. The person who finally coined the term artificial intelligence and is regarded as the father of AI is John McCarthy.</p>
<p><span style="color: #3366ff;"><strong>Applications of AI</strong></span></p>
<p>1) Faster web searching<br />
2) Work in deadly environments like extreme weather<br />
3) Real-time language translate<br />
4) Delivering a correct medical diagnosis<br />
5) Intelligent tutoring systems in education<br />
6) Algorithmic trading in share market<br />
7) Quick market analysis and data mining<br />
8) Portfolio management<br />
9) Human resources and recruiting(HRM) &#8211; screeing resumes and performance appraisals.<br />
10) News, publishing and writing in media<br />
11) Online and customer service<br />
12) Self-parking and advanced cruise controls in cars and other vehicles.<br />
13) Optical character recognition (OCR)<br />
14) Robotics<br />
15) Hybrid intelligent system</p>
<p><span style="color: #3366ff;"><strong>What is the programming language used for artificial intelligence and machine learning?</strong></span><br />
As it purely depends on what languages you like programming in. AI programs have been written in just about every language ever created.</p>
<p><strong><span style="color: #3366ff;">The most common programming languages are.</span></strong></p>
<ul>
<li>Lisp,</li>
<li>Prolog</li>
<li>C/C++</li>
<li>Java (recently)</li>
<li>Python(more recently).</li>
</ul>
<p style="text-align: right;"><span style="color: #ff0000;"><strong><a style="color: #ff0000;" href="http://www.mitindia.in/angularjs/" target="_blank" rel="noopener">You can also read on AngularJS here</a></strong></span></p>
<p><a class="a2a_button_whatsapp" href="https://www.addtoany.com/add_to/whatsapp?linkurl=https%3A%2F%2Fmitindia.in%2Fartificial-intelligence%2F&amp;linkname=Artificial%20%20Intelligence" title="WhatsApp" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_facebook" href="https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Fmitindia.in%2Fartificial-intelligence%2F&amp;linkname=Artificial%20%20Intelligence" title="Facebook" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fmitindia.in%2Fartificial-intelligence%2F&#038;title=Artificial%20%20Intelligence" data-a2a-url="https://mitindia.in/artificial-intelligence/" data-a2a-title="Artificial  Intelligence"><img src="https://static.addtoany.com/buttons/favicon.png" alt="Share"></a></p><p>The post <a href="https://mitindia.in/artificial-intelligence/">Artificial  Intelligence</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
