Artificial Intelligence A Brief History 1. Great Expectations It is not my aim to surprise or shock you – but the simplest way I can summarize is to say.

Slides:



Advertisements
Similar presentations
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
Advertisements

Copyright 2008, Scott Gray1 Propositional Logic 4) If.
1 Knowledge Representation Introduction KR and Logic.
1 Knowledge and reasoning – second part Knowledge representation Logic and representation Propositional (Boolean) logic Normal forms Inference in propositional.
Sugar 2.0 Formal Specification Language D ana F isman 1,2 Cindy Eisner 1 1 IBM Haifa Research Laboratory 1 IBM Haifa Research Laboratory 2 Weizmann Institute.
Chapter 1 The Study of Body Function Image PowerPoint
1 Copyright © 2010, Elsevier Inc. All rights Reserved Fig 2.1 Chapter 2.
Additional Topics ARTIFICIAL INTELLIGENCE
Jeopardy Q 1 Q 6 Q 11 Q 16 Q 21 Q 2 Q 7 Q 12 Q 17 Q 22 Q 3 Q 8 Q 13
Jeopardy Q 1 Q 6 Q 11 Q 16 Q 21 Q 2 Q 7 Q 12 Q 17 Q 22 Q 3 Q 8 Q 13
Title Subtitle.
Addition Facts
Year 6 mental test 5 second questions
Formal Models of Computation Part III Computability & Complexity
ABC Technology Project
Basic Laws of Electric Circuits Kirchhoff’s Voltage Law
4 «Square» questions Are you Ready? B A
1 Planning Chapter CMSC 471 Adapted from slides by Tim Finin and Marie desJardins. Some material adopted from notes by Andreas Geyer-Schulz,
Presentation on Artificial Intelligence
Squares and Square Root WALK. Solve each problem REVIEW:
Science as a Process Chapter 1 Section 2.
Chapter 5 Test Review Sections 5-1 through 5-4.
Addition 1’s to 20.
25 seconds left…...
Chapter Review: What is Sociology?
Week 1.
Week 10 Creating Positioned Layouts
We will resume in: 25 Minutes.
©Brooks/Cole, 2001 Chapter 12 Derived Types-- Enumerated, Structure and Union.
A small truth to make life 100%
Copyright © 2010, 2007, 2004 Pearson Education, Inc. Chapter 15 Probability Rules!
A SMALL TRUTH TO MAKE LIFE 100%
Essential Cell Biology
How Cells Obtain Energy from Food
MA 1165: Special Assignment Completing the Square.
The Pumping Lemma for CFL’s
What is AI? What can it do today?. Definitions of AI can be categorized as follows Think like humans “cognitive science” E.g. General Problem Solver [Newell&Simon.
Artificial Intelligence. Intelligent? What is intelligence? computational part of the ability to achieve goals in the world.
Artificial Intelligence
An Introduction to Artificial Intelligence. Introduction Getting machines to “think”. Imitation game and the Turing test. Chinese room test. Key processes.
A Brief History of Artificial Intelligence
WHAT IS ARTIFICIAL INTELLIGENCE?
Artificial Intelligence A Modern Approach Dennis Kibler.
CSE 473: Artificial Intelligence Dan Weld Slides from Dan Klein, Luke Zettlemoyer, Stuart Russell, Andrew Moore.
CPSC 7373: Artificial Intelligence Jiang Bian, Fall 2014 University of Arkansas for Medical Sciences University of Arkansas at Little Rock.
CS 332: Introduction to AI Class Hour: Section 1: MWF 1:10PM - 2:00PM. Hyer 210.
Introduction to Artificial Intelligence CSE 473 Winter 1999.
Artificial Intelligence
Introduction to AI, H. Feili 1 Introduction to Artificial Intelligence LECTURE 1: Introduction What is AI? Foundations of AI The.
Chapter 6: Objections to the Physical Symbol System Hypothesis.
Introduction (Chapter 1) CPSC 386 Artificial Intelligence Ellen Walker Hiram College.
Knowledge representation
Artificial Intelligence: An Introduction Definition of AI Foundations of AI History of AI Advanced Techniques.
Artificial Intelligence Introductory Lecture Jennifer J. Burg Department of Mathematics and Computer Science.
Artificial Intelligence
CNS 4470 Artificial Intelligence. What is AI? No really what is it? No really what is it?
Artificial Intelligence Prepared By: AIMCORP-Automated Information Management Corporation.
1 CS 2710, ISSP 2610 Foundations of Artificial Intelligence introduction.
So what is AI?.
Artificial intelligence
The Dream of an Intelligent Machine Hans W. Guesgen Computer Science Department.
Introduction to Artificial Intelligence CS 438 Spring 2008.
Humans & Computers Will computers ever achieve human intelligence? Creativity? Originality? Thoughts? Is Artificial Intelligence Possible? The future of.
Artificial Intelligence: Research and Collaborative Possibilities a presentation by: Dr. Ernest L. McDuffie, Assistant Professor Department of Computer.
A Brief History of AI Fall 2013 COMP3710 Artificial Intelligence Computing Science Thompson Rivers University.
CSE 473: Artificial Intelligence
Artificial Intelligence introduction(2)
Artificial Intelligence CSC 361
What is AI?.
Artificial Intelligence
Presentation transcript:

Artificial Intelligence A Brief History 1

Great Expectations It is not my aim to surprise or shock you – but the simplest way I can summarize is to say that there are now in the world machines that think, that learn and that create. Moreover, their ability to do these things is going to increase rapidly until – in a visible future – the range of problems they can handle will be coextensive with the range to which the human mind can be applied. We have invented a computer program capable of thinking non- numerically, and thereby solved the venerable mind-body problem. Herbert Simon, 1957r. 2

Early Successes Logic Theorist proved 38 out of 52 theorems of Chapter 2 of Principia Mathematica Geometry Theorem Prover proved theorems too hard for undegraduate students in mathematics ELIZA, computer-based psychoterapist helped many hypochondriacs ELIZA MYCIN, an expert system to diagnose blood infections, was able to perform considerably better than junior doctors 3

Trouble Solutions developed for „microworlds” did not apply in the real world (computational complexity) Expert systems could not be extended to broader domains (context) Fiasco of the automatic translation project (context) –The spirit is willing but the flesh is weak – The vodka is good but the meat is rotten Fiasco of the planning systems (the frame problem) 4

Planning AC B D S1 T[On(B,A), S1] T[Clear(B), S1] T[Clear(C), S1] T[Clear(D), S1] A≠B ≠C ≠D Plan a sequence of actions α= such that: T[On(A,C), Result(α,S1] T[On(D,A), Result(α,S1] 5

Planning, cont. Available actions: stack: S(x,y) unstack: U(x,y) For every atomic action we specify their effects through axioms: T[Clear(x), S] &T[Clear(y), S] & x ≠ y → T[On(x,y), Result(, S)] T[On(x,y), S] & T[Clear(x), S] → T[Clear(y), Result(, S)] 6

Planning, cont. AC B DDCAB DC A B D C A B U(B,A) S(A,C) S(D,A) 7

Planning - proof T[On(B,A), S1] T[Clear(B), S1] T[Clear(A), S2], where S2=Result(,S1) T[Clear(C),S2) T[On(A,C), S3], where S3=Result(,S2) Ad hoc solution – let’s add frame axioms for the unstack action: T[Clear(x), S] → T[Clear(x), Result(,S)] false! 8

The Frame Problem (AI version) How to formalize changes (and lack thereof) in the world as a result of our actions. Adding the frame axioms does not solve the problem: It is impractical (we would need millions of such axioms) It is not intuitive (we do not do it!) It is often false (what should we do when one robot is moving the blocks while another one is painting them?) 9

Default Logic Commonsense law of inertia: things stay as they are unless we have knowledge to the contrary. Default rule where α, β, γ are formulas. Once α has been established and β is consistent with what we know, we conclude γ. Example: take the generic truth„Birds fly”. In Default Logic we write this as: If we know that Tweety does not fly (because he is an ostrich), the rule will not fire despite the fact that Tweety is a bird. 10

Default Logic: theory E is an extension of iff there exist E 0, E 1, E 2,... such that: 11

Default Logic: example Quaker Pacifist Nixon Republican W={R(nixon), Q(nixon)} This theory has two extensions: 12

Default Logic: problem This theory also has two extensions. This time, however, this does not agree with our intuitions. Amish Speaks German Born in Pennsylvania Born in the USA Hermann We solved the Frame Problem to face the problem of relevance. 13

The Frame Problem in Philosophy: Dennett Odpowiednikiem problemu ramy w AI jest zagadka myślenia potocznego – Wydaje się, że większość naszych działań nie jest planowana – Na pewno nasza cała wiedza nie jest reprezentowana w postaci zdań (pojemność i szybkość mózgu) – Niemal zawsze rozumujemy używając zastrzeżenia ceteris paribus – Potrafimy bez trudu rozróżnić co jest, a co nie jest istotne dla realizacji naszych działań w danej sytuacji 14

The Epistemological Frame Problem Jak opisać istotność w postaci zdań logiki, gdy istotność jest holistyczna, otwarta i wrażliwa na kontekst? The Computational Frame Problem Jak ograniczyć proces rozumowania do tego co istotne, gdy istotność jest holistyczna, otwarta i wrażliwa na kontekst? 15

The Frame Problem in Philosophy: Fodor The Metaphysical Frame Problem: Zdroworozsądkowe prawo inercji uzasadnione jest tylko w kontekście właściwej ontologii. Jaka to ontologia? Ontologia z pojęciami takimi jak ziebieski i fridgeon falsyfikuje zdroworozsądkowe prawo inercji. W tym sensie Problem Ramy to jescze jedno oblicze problemu indukcji. 16

What Next? 17

Path 1: Stay the Course Projekt CYC The problem of AI is commonsense knowledge: let’s add it then! Goals: – 30 people are entering data from newspapers, ads, disctionaries, etc. – After 6 years a million assertions have been entered; the goal was 100 million – CYC had its own ontology, representations of causal relationships and simple rules of relevance The project came to an end in 1994 r. (after 50 mln $); its remnants are still around today ENCYCLOPEDIA 18

Path 2: Change the Paradigm Dreyfus’s criticism: AI’s basic assumptions are wrong! Biological assumption: the brain is a symbol- manipulating device like a digital computer. Psychological assumption: the mind is a symbol- manipulating device like a digital computer. Epistemological assumption: intelligent behavior can be formalized and thus reproduced by a machine. Ontological assumption: the world consist of independent, discrete facts. 19

Path 2: cont. Filozoficzni przodkowie AI (według Dreyfusa): Kartezjusz: wszelkie rozumowanie polega na manipulacji reprezentacjami symbolicznymi złożonymi z prostych idei Kant: wszelkie pojęcia można zbudować z prostych elementów przy użyciu reguł Frege: reguły można sfromalizować tak, by używać ich bez konieczności ich rozumienia lub interpretacji 20

Path 2 cont. Mind (intelligence) is: – situated in the environment (Heidegger: In-der-Welt-sein) – embodied (Merleau-Ponty: le corps propre) AI Lab at MIT (Rodney Brooks) builds the first robots following these tenets (e.g. Big Dog).Big Dog Dreyfus’s views are further developed by: Andy Clark, John Haugeland, Michael Wheeler, Walter Freeman New trends in cognitive science: embodied cognition, dynamicism, neurophenomenology, neurodynamics... 21

Path 3: Change the Goal Distinguish between strong and weak AI – Strong AI: we build machines that really think – Weak AI: we build machines that behave as if they were thinking We are only interested in the weak AI – Even weaker version: we build machines that behave rationally We stay with the logistic approach 22

Path 3: State of the Art Which of the following can be done at present? Play a decent game of table tennis Drive safely along a curving mountain road Drive safely along Telegraph Avenue Buy a week’s worth of groceries on the web Buy a week’s worth of groceries at Berkeley Bowl Play a decent game of bridge Discover and prove a new mathematical theorem Design and execute a research program in molecular biology Write an intentionally funny story Give competent legal advice in a specialized area of law Translate spoken English into spoken Swedish in real time Converse successfully with another person for an hour Perform a complex surgical operation Unload any dishwasher and put everything away 23

Path 3: State of the Art Which of the following can be done at present? Play a decent game of table tennis Drive safely along a curving mountain road Drive safely along Telegraph Avenue Buy a week’s worth of groceries on the web Buy a week’s worth of groceries at Berkeley Bowl Play a decent game of bridge Discover and prove a new mathematical theorem Design and execute a research program in molecular biology Write an intentionally funny story Give competent legal advice in a specialized area of law Translate spoken English into spoken Swedish in real time Converse successfully with another person for an hour Perform a complex surgical operation Unload any dishwasher and put everything away 24

AI and Cognitive Science AI 50 years agoCognitive Science AI todayLogic ThinkingActing Rationally Humanly The central question in the discussion about the methodology of AI : can AI learn from Cognitive Science? Has aeronautics learn anything from ornitology? 25