CSE4/563: Knowledge Representation Recitation November 8, 2010

Slides:



Advertisements
Similar presentations
1 Knowledge Representation Introduction KR and Logic.
Advertisements

ARTIFICIAL INTELLIGENCE [INTELLIGENT AGENTS PARADIGM] Professor Janis Grundspenkis Riga Technical University Faculty of Computer Science and Information.
Artificial intelligence. I believe that in about fifty years' time it will be possible, to programme computers, with a storage capacity of about 10.
A Brief History of Artificial Intelligence
3/30/00 Agents that Reason Logically by Chris Horn Jiansui Yang Xiaojing Wu.
CPSC 322 Introduction to Artificial Intelligence October 6, 2004.
CPSC 322 Introduction to Artificial Intelligence September 15, 2004.
CPSC 322 Introduction to Artificial Intelligence September 13, 2004.
CPSC 322 Introduction to Artificial Intelligence September 20, 2004.
Knowledge Representation I (Propositional Logic) CSE 473.
ICT in Healthcare Expert Systems.
Converting Fractions we have looked at converting FRACTIONS to DECIMALS. We can also show fractions as PERCENTAGES. PER CENT means OUT OF (per)
Introduction to Artificial Intelligence. What is AI?
Notes for Chapter 12 Logic Programming The AI War Basic Concepts of Logic Programming Prolog Review questions.
CSE4/563: Knowledge Representation Recitation September 13, 2010 “Intelligence is the art of good guesswork.” –H.B. Barlow.
Artificial Intelligence Introductory Lecture Jennifer J. Burg Department of Mathematics and Computer Science.
What do computers know?  All they really know is on or off.  Kind of like a light switch  Computers aren’t nearly as smart as you are!
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.
Artificial Intelligence Programming in Prolog Lecture 1: An Introduction 23/09/04.
1 Introduction to Artificial Intelligence (Lecture 1)
For Friday Read chapter 8 Homework: –Chapter 7, exercise 1.
Logical and Functional Programming
CSE4/563: Knowledge Representation Recitation November 10, 2010 “Artificial intelligence is based on the assumption that the mind can be described as some.
INFORMATION TECHNOLOGY
ARTIFICIALINTELLIGENCE ARTIFICIAL INTELLIGENCE EXPERT SYSTEMS.
Introduction to Artificial Intelligence CS 438 Spring 2008.
Psychonomics: the ontology of psychology Psychonomics: The ontology of psychology.
Knowledge Based Information System
CSE4/563: Knowledge Representation Recitation September 15, 2010 “In activities other than purely logical thought, our minds function much faster than.
Artificial Intelligence Logical Agents Chapter 7.
Introduction to Artificial Intelligence Heshaam Faili University of Tehran.
CSE 4705 Artificial Intelligence
ECE457 Applied Artificial Intelligence Fall 2007 Lecture #6
By P. S. Suryateja Asst. Professor, CSE Vishnu Institute of Technology
Artificial Intelligence
Entry Ticket: Algorithms and Program Construction
CSE4/563: Knowledge Representation Recitation September 20, 2010
Number Properties Rules of the Game.
For Wednesday Read “lectures” 7-10 of Learn Prolog Now:
Knowledge Representation
Divisibility and Mental Math
Artificial Intelli-gence 1: logic agents
النظم الخبيرة Expert Systems (ES)
Computers & Programming Languages
Artificial Intelligence introduction(2)
إعداد المشرفة التربوية نجلاء الجارد
Number Properties Rules of the game
CSE 415 Introduction to Artificial Intelligence Winter 2004
Biointelligence Lab School of Computer Sci. & Eng.
Number Properties Rules of the game
Is the Brain a Turing Machine?
Artificial Intelligence: Logic agents
CPSC 322 Introduction to Artificial Intelligence
TA : Mubarakah Otbi, Duaa al Ofi , Huda al Hakami
Biointelligence Lab School of Computer Sci. & Eng.
Agent Development Project
CSE 415 Introduction to Artificial Intelligence Winter 2003
Term Project: Poker Game
CS 188: Artificial Intelligence
Тархи ба оюун \Brain and Mind\
Quiz Nov Logic.
Quiz Nov Logic.
Artificial Intelligence
Structural Emergence in Partially Ordered Sets
CSE4/563: Knowledge Representation Recitation November 17, 2010
CO Games Development 2 Week 22 Machine Learning
Representations & Reasoning Systems (RRS) (2.2)
What is Artificial Intelligence? (AI) is the simulation of human intelligence processes by machines, especially computer systems. These processes include.
Thinking as Computation
Presentation transcript:

CSE4/563: Knowledge Representation Recitation November 8, 2010 “Artificial intelligence is based on the assumption that the mind can be described as some kind of formal system manipulating symbols that stand for things in the world. Thus it doesn't matter what the brain is made of, or what it uses for tokens in the great game of thinking. Using an equivalent set of tokens and rules, we can do thinking with a digital computer, just as we can play chess using cups, salt and pepper shakers, knives, forks, and spoons. Using the right software, one system (the mind) can be mapped onto the other (the computer). ” –George Johnson

HW7/Proj2 Questions/Concerns? http://www.cse.buffalo.edu/~shapiro/Courses/CSE563/2010/Homeworks/hw7.pdf http://www.cse.buffalo.edu/~shapiro/Courses/CSE563/2010/Projects/proj2.pdf

A Homework 5 Comment

Horn Clauses *(From the class notes. Shapiro, 2010.)

Prolog Control+D to exit consult(user). Horn clause resolution. From the notes: | ?- consult(user). % consulting user... | driver(X) :- drives(X,_). | passenger(Y) :- drives(_,Y). | drives(betty,tom). | % consulted user in module user, 0 msec 1200 bytes yes | ?- driver(X), passenger(Y). X = betty, Y = tom ? y

Prolog Closed World Assumption Nothing exists outside of the KB defined in your prolog program. | ?- consult(user). % consulting user... | hero(superman). | hero(theflash). | hero(greenlantern). | % consulted user in module user, 0 msec 784 bytes yes | ?- hero(superman). | ?- hero(batman). no

Prolog Example