Skip to main content

Introduction to Artificial Intelligence


WHAT  IS  ARTIFICIAL  INTELLIGENCE?





Artificial intelligence images, expert system, machine learning, deep learning, robotics, neural networks,knowledge learning intelligent retrival
Artificial Intelligence 
               Concept of AI goes back to the classical ages. Under greek  mythology , the concept of machines and mechanical men were well thought off. In 1950, “ALAS TURING”, published landmark paper “Computing Machinery and Intelligence”, proposes “Imitation Game”, known as the famous “TURING TEST” He speculated about the possibility of creating machines that think. Unfortunately, until this date we haven’t found a machine that has fully cleared the Turin Test. Followed by this was the era of 1951, in which MARVIN MINSKY and DEAN EDMUNDS built the first  artificial neural network using 3000 vacuum tubes stimulating 40 neurons. Next in 1952,  ARTHUR SAMUEL, wrote the first machine learning program(Game AI) for checkers. In 1956, there was the birth of AI. JOHN Mc CARTHY, first coined the term “AI” at the Dartmouth Conference. Coming to 1959, first AI laboratory, where  the research on AI has begun, MIT lab, which is still running till date. Followed by this , in 1960, first robot was introduced to General Motors assembly line. In 1961, the first chatbot was invented, now we  have Siri and Alexa, but in 1961 there was chatbot known as Eliza which was introduced by the time. This is followed by the IBM Deep Blue, in 1997 the news broke down that IBM’s  Deep Blue beats the world champion Gary Kasparow , in the game of chess. This was the first accomplishment of AI to beat the world champion. In 2005, when the DARPA Grand Challenge was held, a robotic car named Stanley was built by the Stanford Racing Team won the DARPA Grand Challenge. There was another big accomplishment of AI. In 2011, IBM’s question answering system, WATSON , defeated the two greatest Jeopardy champions, Brad Rutter and Ken Jennings.
Artificial intelligence images, expert system, machine learning, deep learning, robotics, neural networks,knowledge learningintelligent retrival
Artificial Intelligence

               This was how the AI evolved, it started off hypothetical situation ,  right now it is an important technology in today’s world. If you look around us everything  run through AI, Deep Learning and Machine Learning. Since the emergence of AI in 1950, we have actually seen an exponential growth in it’s potential . So AI covers domains such as Machine Learning, Deep Learning, Neural Network, Natural Language processing expert systems and so on. It had also made it’s way in computer vision and image processing. Now the question here is, for over half a century why it has suddenly gain so much of importance , why are we interested in knowing about AI now? The main reason for demand of AI is that we have more computer power now and AI requires a  lot computing power.  

                The term AI was first coined by John Mc Carthy in the year 1956 as mentioned above. He defined AI as the science and engineering of making intelligent machines. The theory and development of computer systems able to perform tasks normally requiring human intelligence, such as visual perception, speech recognition, decision-making and translation between languages. One of the most famous application of AI is google predictive search engine, when you began typing a search term google makes recommendations to you to choose from, that is AI in active. So predictive searches are based on data that google collects about you such as your browser history, your location, your age and other personal details. Using AI google tries to guess what you are trying to find. Coming to health care, IBM Watson Healthcare, is one of the finest developed AI software. More than 600 healthcare organizations use IBM AI technology ,all over the world. 
Artificial intelligence images, expert system, machine learning, deep learning, robotics, neural networks,knowledge learningintelligent retrival
Robotics

               Another initiative taken by google was Google’s AI Eye doctor which can examine retina scans and identify a condition called diabetic rentinopathy, which can cause blindness. Now in Social Media platforms like Facebook, AI is used for face verification wherein you make use of machine learning and deep learning concept in order to detect facial features and tag your friends. So we are unaware that we use AI very regularly in our life. All the social media platforms like Instagram,Facebook,Twitter they heavily rely on AI. Another such example is Twitter’s AI which is being used to identify any sort of hate speech and terriostic languages in tweets. Coming to virtual assistants we have Siri and Alexa right now. Also another newly released google’s virtual assistant called the google duplex, which has astonished millions of people around the world. Not only it can respond to calls and book appointments for you, it also adds a human touch. Another famous application of AI is Tesla’s self-driving car. So AI implements computer vision, image detection, deep learning in order to build cars that can automatically detect any objects or any obstacles and drive around any human intervention. So, if we look around at it AI is actually used by the tech giants. A lot of tech giant companies like Google, Tesla, Facebook  all of these data driven companies. In fact, Netflix also makes use of AI for different movie recommendations for its user. Apart from Netflix, Gmail also uses AI on a everyday basis. If we open uo our inbox right now, we will notice that there are separate section called  the spam mails also. It makes use of AI and machine learning to classify emails as spam and non-spam. Many times certain words or phrases are frequently used in spam mails, if you notice your spam emails they have words like lottery, earn , full refund and so on. All of this denotes that the email is more likely to be a spam one.

                Thus, AI we use today is narrow AI (weak AI) however , the long term goal of many researchers is to create general AI (AGI or strong AI). Now we are in research through the applications of AI in public, AI in military and so on. This is not the end of AI, there is more to come from it. In future, it can be a whole society of robots.
              
      

Comments

Popular posts from this blog

What is turtle.stamp() in python?

turtle.stamp() turtle.stamp() is used to stamp a copy of the turtle shape, it prints the shape at that point and moves forward with the instructions. Here shape of the turtle does not matter. It does the same for every turtle shape.  Example:  Here is the example of stamp() used: import   turtle def   tri ():      for   i   in   range ( 10 ):          turtle . degrees ( 60 )          turtle . forward ( 200 + 10 * i )          turtle . stamp ()          turtle . right ( 200 ) turtle . speed ( 7 ) turtle . color ( "orange" )         tri () turtle . done () For more such posts, stay tuned!

Use Python to know about Artificial Intelligence

 Hey, welcome back!   You'll be happy to know that you can use python to know about any topic related to your research from wikipedia. Let's check the code.     #import module import requests import pandas as pd from bs4 import BeautifulSoup def getdata(url):     r=requests.get(url)     return r.text htmldata=getdata("https://en.wikipedia.org/wiki/Artificial_Intelligence") soup= BeautifulSoup(htmldata, 'html.parser') data='' for data in soup.find_all("p"):     print(data.get_text()) Here is the output of the code. You can use the same code for acquiring various kind of information just by doing a slight change.  htmldata=getdata("https://en.wikipedia.org/wiki/(#Entering the topic name") Assume, you want to know about solar eclipse, here is the code for it. Observe the slight change in it. #import module import requests import pandas as pd from bs4 import BeautifulSoup def getdata(url):     r=requests.get(url)     return r.text htmld