1 The main topics in AI Artificial intelligence can be considered under a number of headings: –Search (includes Game Playing). –Representing Knowledge.

Slides:



Advertisements
Similar presentations
Artificial Intelligence. Intelligent? What is intelligence? computational part of the ability to achieve goals in the world.
Advertisements

Artificial Intelligence
Introduction to AI Kaziwa H. Saleh. What is AI? John McCarthy defines AI as “the science and engineering to make intelligent machines”. AI is the study.
Bart Selman CS CS 475: Uncertainty and Multi-Agent Systems Prof. Bart Selman Introduction.
A Brief History of Artificial Intelligence
WHAT IS ARTIFICIAL INTELLIGENCE?
C SC 421: Artificial Intelligence …or Computational Intelligence Alex Thomo
1946: ENIAC heralds the dawn of Computing. I propose to consider the question: “Can machines think?” --Alan Turing, : Turing asks the question….
Artificial Intelligence
Introduction to Introduction to Artificial Intelligence Henry Kautz.
Random Administrivia In CMC 306 on Monday for LISP lab.
Artificial Intelligence Instructor: Professor Yun Peng
Artificial Intelligence
Artificial Intelligence
ARTIFICIAL INTELLIGENCE Artificial intelligence (AI) is the intelligence exhibited by machines or software. It is an academic field of study which studies.
Introduction to AI, H. Feili 1 Introduction to Artificial Intelligence LECTURE 1: Introduction What is AI? Foundations of AI The.
Artificial Intelligence: Its Roots and Scope
Artificial Intelligence Universitatea Politehnica Bucuresti Adina Magda Florea
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,
CSCI 4410 Introduction to Artificial Intelligence.
Artificial Intelligence CIS 479/579 Bruce R. Maxim UM-Dearborn.
Introduction (Chapter 1) CPSC 386 Artificial Intelligence Ellen Walker Hiram College.
Artificial Intelligence: Its Roots and Scope
Artificial Intelligence
Steps Toward an AGI Roadmap Włodek Duch ( Google: W. Duch) AGI, Memphis, 1-2 March 2007 Roadmaps: A Ten Year Roadmap to Machines with Common Sense (Push.
Artificial Intelligence: An Introduction Definition of AI Foundations of AI History of AI Advanced Techniques.
Artificial Intelligence
Artificial Intelligence
1 Artificial Intelligence GholamReza GhassemSani Fall 1383.
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
Artificial Intelligence: Introduction Department of Computer Science & Engineering Indian Institute of Technology Kharagpur.
ARTIFICIAL INTELLIGENCE Human like intelligence Definitions: 1. Focus on intelligent Behaviour “Behaviour by a machine that, if performed by a human.
1 CS 385 Fall 2006 Chapter 1 AI: Early History and Applications.
Course Instructor: K ashif I hsan 1. Chapter # 1 Kashif Ihsan, Lecturer CS, MIHE2.
1 Artificial Intelligence 2 Course Learning Outcomes At the end of this course: Knowledge and understanding You should have a knowledge and understanding.
AI: Can Machines Think? Juntae Kim Department of Computer Engineering Dongguk University.
Chapter 1 The Product Software is
AI ● Dr. Ahmad aljaafreh. What is AI? “AI” can be defined as the simulation of human intelligence on a machine, so as to make the machine efficient to.
Definitions of AI There are as many definitions as there are practitioners. How would you define it? What is important for a system to be intelligent?
Course Overview  What is AI?  What are the Major Challenges?  What are the Main Techniques?  Where are we failing, and why?  Step back and look at.
University of Kurdistan Artificial Intelligence Methods (AIM) Lecturer: Kaveh Mollazade, Ph.D. Department of Biosystems Engineering, Faculty of Agriculture,
ARTIFICIALINTELLIGENCE ARTIFICIAL INTELLIGENCE EXPERT SYSTEMS.
Introduction to Artificial Intelligence CS 438 Spring 2008.
Artificial Intelligence: Research and Collaborative Possibilities a presentation by: Dr. Ernest L. McDuffie, Assistant Professor Department of Computer.
Machines Who Think By: Pamela McCorduck Presentation By: Chantal Ivenso University of Cincinnati.
Princess Nora University Artificial Intelligence CS 461 Level 8 1.
A Brief History of AI Fall 2013 COMP3710 Artificial Intelligence Computing Science Thompson Rivers University.
Vilalta/Norvig/Eick: History of AI Origins McCulloch and Pitts (1943) Model of Artificial Neurons. Donald Hebb (1949) Hebbian Learning Conference at Dartmouth.
Intelligent Control Methods Lecture 2: Artificial Intelligence Slovak University of Technology Faculty of Material Science and Technology in Trnava.
Some Thoughts to Consider 5 Take a look at some of the sophisticated toys being offered in stores, in catalogs, or in Sunday newspaper ads. Which ones.
ARTIFICIAL INTELLIGENCE. Contents Introduction Branches of AI Control Theory Cybernetics Artificial Neural Networks Application Advantage And Disadvantage.
Decision Support and Business Intelligence Systems (9 th Ed., Prentice Hall) Chapter 12: Artificial Intelligence and Expert Systems.
Artificial Intelligence
Introduction to Artificial Intelligence Heshaam Faili University of Tehran.
Artificial Intelligence
Course Objectives This part of course introduces some main strategies and methods used in intelligent systems. The topics include the history and applications.
CHAPTER 1 Introduction BIC 3337 EXPERT SYSTEM.
Artificial Intelligence (CS 370D)
Done Done Course Overview What is AI? What are the Major Challenges?
Artificial Intelligence and Searching
Artificial Intelligence introduction(2)
Introduction to Artificial Intelligence and Soft Computing
Introduction to Artificial Intelligence
TA : Mubarakah Otbi, Duaa al Ofi , Huda al Hakami
COMP3710 Artificial Intelligence Thompson Rivers University
Artificial Intelligence
Artificial Intelligence and Searching
Artificial Intelligence and Searching
Introduction to Artificial Intelligence
Presentation transcript:

1 The main topics in AI Artificial intelligence can be considered under a number of headings: –Search (includes Game Playing). –Representing Knowledge and Reasoning with it. –Planning. –Learning. –Natural language processing. –Expert Systems. –Interacting with the Environment (e.g. Vision, Speech recognition, Robotics) We won’t have time in this course to consider all of these.

2 –more powerful and more useful computers –new and improved interfaces –solving new problems –better handling of information –relieves information overload –conversion of information into knowledge Some Advantages of Artificial Intelligence The Disadvantages –increased costs –difficulty with software development - slow and expensive –few experienced programmers –few practical products have reached the market as yet.

3 Search Search is the fundamental technique of AI. –Possible answers, decisions or courses of action are structured into an abstract space, which we then search. Search is either "blind" or “uninformed": –blind we move through the space without worrying about what is coming next, but recognising the answer if we see it –informed we guess what is ahead, and use that information to decide where to look next. We may want to search for the first answer that satisfies our goal, or we may want to keep searching until we find the best answer.

4 Knowledge Representation & Reasoning The second most important concept in AI If we are going to act rationally in our environment, then we must have some way of describing that environment and drawing inferences from that representation. –how do we describe what we know about the world ? –how do we describe it concisely ? –how do we describe it so that we can get hold of the right piece of knowledge when we need it ? –how do we generate new pieces of knowledge ? –how do we deal with uncertain knowledge ?

5 Planning Given a set of goals, construct a sequence of actions that achieves those goals: –often very large search space –but most parts of the world are independent of most other parts –often start with goals and connect them to actions –no necessary connection between order of planning and order of execution –what happens if the world changes as we execute the plan and/or our actions don’t produce the expected results?

6 Learning If a system is going to act truly appropriately, then it must be able to change its actions in the light of experience: –how do we generate new facts from old ? –how do we generate new concepts ? –how do we learn to distinguish different situations in new environments ?

7 Interacting with the Environment In order to enable intelligent behaviour, we will have to interact with our environment. Properly intelligent systems may be expected to: –accept sensory input vision, sound, … –interact with humans understand language, recognise speech, generate text, speech and graphics, … –modify the environment robotics

8 The ‘von Neuman’ Architecture

9 History of AI Origins –The Dartmouth conference: 1956 John McCarthy (Stanford) Marvin Minsky (MIT) Herbert Simon (CMU) Allen Newell (CMU) Arthur Samuel (IBM) The Turing Test (1950) “Machines who Think” –By Pamela McCorckindale

10 Periods in AI Early period ’s & 60’s –Game playing brute force (calculate your way out) –Theorem proving symbol manipulation –Biological models neural nets Symbolic application period - 70’s –Early expert systems, use of knowledge Commercial period - 80’s –boom in knowledge/ rule bases