What is Artificial Intelligence? AI is the effort to develop systems that can behave/act like humans. Turing Test The problem = unrestricted domains –human.

Slides:



Advertisements
Similar presentations
Computer Science Department FMIPA IPB 2003 Neural Computing Yeni Herdiyeni Computer Science Dept. FMIPA IPB.
Advertisements

An Introduction to Artificial Intelligence. Introduction Getting machines to “think”. Imitation game and the Turing test. Chinese room test. Key processes.
Chapter 13 Artificial Intelligence. Chapter Goals Discuss types of problems that – humans do best – computers do best Turing test 13-2.
Chapter 10 Artificial Intelligence © 2007 Pearson Addison-Wesley. All rights reserved.
Artificial Neural Networks Artificial Neural Networks are (among other things) another technique for supervised learning k-Nearest Neighbor Decision Tree.
Neural Networks. Background - Neural Networks can be : Biological - Biological models Artificial - Artificial models - Desire to produce artificial systems.
Traffic Sign Recognition Using Artificial Neural Network Radi Bekker
Artificial Intelligence (AI) Addition to the lecture 11.
Artificial Intelligence By Ryan Shoultes & Jeremy Creighton.
CHAPTER 12 ADVANCED INTELLIGENT SYSTEMS © 2005 Prentice Hall, Decision Support Systems and Intelligent Systems, 7th Edition, Turban, Aronson, and Liang.
1 Lyle H. Ungar, University of Pennsylvania What is AI? “Artificial Intelligence is the study of how to make computers do things at which, at the moment,
Review Topics Test 1. Background Topics Definitions of Artificial Intelligence & Turing Test Physical symbol system hypothesis vs connectionist approaches.
Chapter 11: Artificial Intelligence
Artificial Intelligence Lecture No. 28 Dr. Asad Ali Safi ​ Assistant Professor, Department of Computer Science, COMSATS Institute of Information Technology.
Invitation to Computer Science 5th Edition
Chapter 14: Artificial Intelligence Invitation to Computer Science, C++ Version, Third Edition.
Chapter 10 Artificial Intelligence. © 2005 Pearson Addison-Wesley. All rights reserved 10-2 Chapter 10: Artificial Intelligence 10.1 Intelligence and.
LeongHW, SoC, NUS (UIT2201: AI) Page 1 © Leong Hon Wai, Artificial Intelligence  Reading Materials:  Ch 14 of [SG]  Also Section Logic.
计算机科学概述 Introduction to Computer Science 陆嘉恒 中国人民大学 信息学院
Neural Networks AI – Week 21 Sub-symbolic AI One: Neural Networks Lee McCluskey, room 3/10
Artificial Neural Nets and AI Connectionism Sub symbolic reasoning.
11 C H A P T E R Artificial Intelligence and Expert Systems.
Artificial Intelligence
Copyright © 2006, The McGraw-Hill Companies, Inc. All rights reserved. Decision Support Systems Chapter 10.
Artificial Neural Networks. Applied Problems: Image, Sound, and Pattern recognition Decision making  Knowledge discovery  Context-Dependent Analysis.
1 Machine Learning The Perceptron. 2 Heuristic Search Knowledge Based Systems (KBS) Genetic Algorithms (GAs)
Artificial Neural Networks. The Brain How do brains work? How do human brains differ from that of other animals? Can we base models of artificial intelligence.
An informal description of artificial neural networks John MacCormick.
110/19/2015CS360 AI & Robotics AI Application Areas  Neural Networks and Genetic Algorithms  These model the structure of neurons in the brain  Humans.
Introduction to Artificial Intelligence and Soft Computing
Copyright © 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 11: Artificial Intelligence Computer Science: An Overview Tenth Edition.
Introduction to Machine Learning Kamal Aboul-Hosn Cornell University Chess, Chinese Rooms, and Learning.
CSC Intro. to Computing Lecture 22: Artificial Intelligence.
Chapter 13 Artificial Intelligence and Expert Systems.
Soft Computing Lecture 19 Part 2 Hybrid Intelligent Systems.
Language Project.  Neural networks have a large appeal to many researchers due to their great closeness to the structure of the brain, a characteristic.
© 2005 Prentice Hall, Decision Support Systems and Intelligent Systems, 7th Edition, Turban, Aronson, and Liang 12-1 Chapter 12 Advanced Intelligent Systems.
Artificial Intelligence & Neural Network
AI: Can Machines Think? Juntae Kim Department of Computer Engineering Dongguk University.
WEEK INTRODUCTION IT440 ARTIFICIAL INTELLIGENCE.
KNOWLEDGE BASED SYSTEMS
Dr.Abeer Mahmoud ARTIFICIAL INTELLIGENCE (CS 461D) Dr. Abeer Mahmoud Computer science Department Princess Nora University Faculty of Computer & Information.
Presented by:- Reema Tariq Artificial Intelligence.
ITEC 1010 Information and Organizations Chapter V Expert Systems.
ARTIFICIAL INTELLIGENCE include people, procedures, hardware, software, data and knowledge needed to develop computer systems and machines that demonstrated.
Neural Networks. Background - Neural Networks can be : Biological - Biological models Artificial - Artificial models - Desire to produce artificial systems.
COMPUTER SYSTEM FUNDAMENTAL Genetic Computer School INTRODUCTION TO ARTIFICIAL INTELLIGENCE LESSON 11.
Business Analytics Several odds and ends Copyright © 2016 Curt Hill.
March 31, 2016Introduction to Artificial Intelligence Lecture 16: Neural Network Paradigms I 1 … let us move on to… Artificial Neural Networks.
Chapter 13 Artificial Intelligence. Artificial Intelligence – Figure 13.1 The Turing Test.
Artificial Intelligence
Classification of models
Neural Networks.
Fundamentals of Information Systems, Sixth Edition
Chapter 11: Artificial Intelligence
Chapter 11: Artificial Intelligence
PART IV: The Potential of Algorithmic Machines.
Artificial Intelligence (CS 370D)
Artificial Intelligence ppt
Dr. Unnikrishnan P.C. Professor, EEE
النظم الخبيرة Expert Systems (ES)
Intro to Expert Systems Paula Matuszek CSC 8750, Fall, 2004
Artificial Intelligence
Artificial Intelligence introduction(2)
Chapter 12 Advanced Intelligent Systems
OVERVIEW OF BIOLOGICAL NEURONS
Artificial Intelligence Lecture No. 28
CS 621 Artificial Intelligence Lecture /10/05 Prof
Presentation transcript:

What is Artificial Intelligence? AI is the effort to develop systems that can behave/act like humans. Turing Test The problem = unrestricted domains –human intelligence vastly complex and broad –associations, metaphors, and analogies –common sense –conceptual frameworks

Elements of AI Natural Language Processing Robotics Perceptive Systems (Vision) Expert Systems

How are Machines Intelligent? Constrained Heuristic Search –How do you play chess? first move = 20 possible second move = 400 possible 7th move = 1,280,000,000 possible –Depth First vs. Breath First Searching –Ability to Learn

Decision Tree

Depth First Search

Breath First Search

Expert Systems Capture knowledge of an expert. Represent Knowledge as a –rule base if then rules –semantic netsemantic net hierarchy –framesframes shared characteristics, IS-A relationships

Expert System Successes XCON - configures systems for DEC Prospector - an mining expert MYCIN - infectious blood diseases EMYCIN - Empty MYCIN

Elements of Expert System Shell Knowledge Base –rules Working Memory –facts of current case Inference Engine –applies rules using current set of facts Explanation Facility CLIPS

Neural Networks & The Brain Base on architecture of human brain –Neurons connected by axons & dendrites –100 billion neurons –1,000 dendrites per neuron –100,000 billion synapses –10 million billion interconnectons per second

How a Neuron Works Impulses come from other neurons. When sum of inputs reaches a threshold, neuron fires. Sending impulses to next level of neurons.

An Artificial Neural Network Inputs Hidden Output w w w w w w

Neural Networks, NN NNs learn by using a training set and adjusting the weights on each connection. NNs do not have to be “told” explicit relationship rules. NNs can work with partial inputs. NNs cannot explain their results. NNs can take a long time to train. A NN demonstration