Knowledge Representation

Slides:



Advertisements
Similar presentations
Heuristic Search techniques
Advertisements

Artificial Intelligence By Mr. Ejaz CIIT Sahiwal.
CSC411Artificial Intelligence 1 Chapter 3 Structures and Strategies For Space State Search Contents Graph Theory Strategies for Space State Search Using.
Knowledge Representation
CS 484 – Artificial Intelligence
Intelligent systems Lecture 6 Rules, Semantic nets.
State Spaces Introduction to Artificial Intelligence Dr. Robin Burke.
Artificial Intelligence Problem solving by searching CSC 361
State-Space Searches. State spaces A state space consists of –A (possibly infinite) set of states The start state represents the initial problem Each.
Artificial Intelligence
Toy Problem: Missionaries and Cannibals
1 Chapter 3 Knowledge Representation. 2 Chapter 3 Contents l The need for a good representation l Semantic nets l Inheritance l Frames l Object oriented.
Structures and Strategies for State Space Search
Robotics Versus Artificial Intelligence. Search. SearchSearch “All AI is search” “All AI is search”  Game theory  Problem spaces Every problem is a.
1 Chapter 3 Knowledge Representation. 2 Chapter 3 Contents l The need for a good representation l Semantic nets l Inheritance l Frames l Object oriented.
1 Structures and Strategies for State Space Search 3 3.0Introduction 3.1Graph Theory 3.2Strategies for State Space Search 3.3Using the State Space to Represent.
State-Space Searches. 2 State spaces A state space consists of –A (possibly infinite) set of states The start state represents the initial problem Each.
State-Space Searches.
Artificial Intelligence Course outline Introduction Problem solving Generic algorithms Knowledge Representation and Reasoning Expert Systems Uncertainty.
Artificial Intelligence LECTURE 3 ARTIFICIAL INTELLIGENCE LECTURES BY ENGR. QAZI ZIA 1.
Knowledge Representation CPTR 314. The need of a Good Representation  The representation that is used to represent a problem is very important  The.
CSE 326: Data Structures NP Completeness Ben Lerner Summer 2007.
Overall course structure AI Artificial Intelligence ( A modern approach ) AI-2 Spring semester TDT4171 Methods in artificial intelligence AI-1 Fall semester.
Artificial Intelligence LECTURE 2 ARTIFICIAL INTELLIGENCE LECTURES BY ENGR. QAZI ZIA 1.
State-Space Searches. 2 State spaces A state space consists of A (possibly infinite) set of states The start state represents the initial problem Each.
CS344: Introduction to Artificial Intelligence (associated lab: CS386)
Problem Solving Agents
Problem Reduction So far we have considered search strategies for OR graph. In OR graph, several arcs indicate a variety of ways in which the original.
Introduction to Artificial Intelligence CS 438 Spring 2008.
Chapter 7. Propositional and Predicate Logic Fall 2013 Comp3710 Artificial Intelligence Computing Science Thompson Rivers University.
Knowledge Representation Fall 2013 COMP3710 Artificial Intelligence Computing Science Thompson Rivers University.
CS621: Artificial Intelligence Pushpak Bhattacharyya CSE Dept., IIT Bombay Lecture 13– Search 17 th August, 2010.
Chapter 9. Rules and Expert Systems Fall 2013 Comp3710 Artificial Intelligence Computing Science Thompson Rivers University.
Chapter 5. Advanced Search Fall 2011 Comp3710 Artificial Intelligence Computing Science Thompson Rivers University.
1 Chapter 3 Knowledge Representation. 2 Chapter 3 Contents l The need for a good representation l Semantic nets l Inheritance l Frames l Object oriented.
A Brief History of AI Fall 2013 COMP3710 Artificial Intelligence Computing Science Thompson Rivers University.
G5AIAI Introduction to AI
Search Methodologies Fall 2013 Comp3710 Artificial Intelligence Computing Science Thompson Rivers University.
1 Introduction to Artificial Intelligence l Topic 1. A Brief History to Artificial Intelligence n Why we focus on “weak AI”? n Who is Turing? l Topic 2.
Definition and Technologies Knowledge Representation.
Chapter 12. Probability Reasoning Fall 2013 Comp3710 Artificial Intelligence Computing Science Thompson Rivers University.
Artificial Intelligence & Knowledge Representation National Institute Of Science & Technology Sudeep Misra [1] Artificial Intelligence and Knowledge Representation.
Solving problems by searching
Knowledge Representation Techniques
Chapter 7. Propositional and Predicate Logic
Artificial Intelligence
CSPs: Search and Arc Consistency Computer Science cpsc322, Lecture 12
Chapter 9. Rules and Expert Systems
COMP3710 Artificial Intelligence Thompson Rivers University
CSPs: Search and Arc Consistency Computer Science cpsc322, Lecture 12
Problem Solving by Searching
Problem Solving as Search
CSPs: Search and Arc Consistency Computer Science cpsc322, Lecture 12
Knowledge Representation and Inference
CSE 4705 Artificial Intelligence
KNOWLEDGE REPRESENTATION
Introduction to Artificial Intelligence Lecture 9: Two-Player Games I
Artificial Intelligence
Chapter 7. Propositional and Predicate Logic
Chapter 5. Advanced Search
Knowledge Representation
Chapter 9. Rules and Expert Systems
COMP3710 Artificial Intelligence Thompson Rivers University
Artificial Intelligence
State-Space Searches.
COMP3710 Artificial Intelligence Thompson Rivers University
State-Space Searches.
Search.
Search.
State-Space Searches.
Presentation transcript:

Knowledge Representation Fall 2016 COMP3710 Artificial Intelligence Computing Science Thompson Rivers University

Knowledge Representation Course Outline Part I – Introduction to Artificial Intelligence Part II – Classical Artificial Intelligence Knowledge Representation Searching Search Methodoloties Advanced Search Genetic Algorithms (relatively new study area) Knowledge Represenation and Automated Reasoning Propositinoal and Predicate Logic Inference and Resolution for Problem Solving Rules and Expert Systems Part III – Machine Learning Part IV – Advanced Topics TRU-COMP3710 Knowledge Representation

Knowledge Representation Unit Outcomes … TRU-COMP3710 Knowledge Representation

Knowledge Representation Reference Chapter 3. Knowledge Representation TRU-COMP3710 Knowledge Representation

Knowledge Representation Unit Outline Introduction The Need for a Good Representation Example: Semantic Nets Inheritance Example: Frames Object-Oriented Programming Search Spaces Semantic Trees Search Trees Combinatorial Explosion Problem Reduction Goal Trees TRU-COMP3710 Knowledge Representation

The Need for a Good Representation If, for a given problem, we have a means of checking a proposed solution, then we can solve the problem by testing all possible answers. – Marvin Minsky How to make a system solve a problem? A computer needs a representation of a problem in order to solve it. A representation must be: Efficient – not wasteful in time or resources. Useful – allows the computer to solve the problem. Meaningful – really relates to the problem. Any good idea? TRU-COMP3710 Knowledge Representation

Example: Semantic Nets A semantic net is a graph with nodes, connected by edges. The nodes represent objects or properties. The edges represent relationships between the objects. TRU-COMP3710 Knowledge Representation

Knowledge Representation Inheritance Inheritance is the process by which a subclass inherits properties from a superclass. Example: Mammals give birth to live young. Fido is a mammal. Therefore fido gives birth to live young. In some cases, as in the example above, inherited values may need to be overridden. (Fido may be a mammal, but if he’s male then he probably won’t give birth). Can we expand semantic nets to include inheritance? TRU-COMP3710 Knowledge Representation

Knowledge Representation Example: Frames A sort of extension of semantic nets with inheritance A frame system consists of a number of frames, connected by edges, like a semantic net. Class frames describe classes. Instance frames describe instances. Each frame has a number of slots. Each slot can be assigned a slot value. How to implement? TRU-COMP3710 Knowledge Representation

Object-Oriented Programming Object oriented programming languages such as Java, C++. Use ideas such as: inheritance multiple inheritance overriding default values procedures and demons TRU-COMP3710 Knowledge Representation

Knowledge Representation Search Spaces Do we always need to use such representations? Representation is really problem-specific. Many problems in AI can be represented as search spaces. A search space is a representation of the set of all possible choices in a given problem, one or more of which are the solution to the problem. State spaces A state is a set of values of all instances. States are connected by paths that represent actions. TRU-COMP3710 Knowledge Representation

Knowledge Representation Search Trees Trees are easier to handle than graphs. Semantic trees – a type of semantic net. Used to represent search spaces. Root node has no predecessor. Leaf nodes have no successors. Goal nodes (of which there may be more than one) represent solutions to a problem. What is the problem then, when you know what the goal is? How about the 8-puzzle game? The missionaries and cannibals problem? What do we have to do when we do not know what the goal is? TRU-COMP3710 Knowledge Representation

Knowledge Representation Search Trees H, I, J, K, M, N and O are leaf nodes. A is the root node. L is the goal node. There is only one complete path: A, C, F, L TRU-COMP3710 Knowledge Representation

Search Trees – Missionaries & Cannibals Three missionaries and three cannibals want to cross a river using one canoe. Canoe can hold up to two people. Can never be more cannibals than missionaries on either side of the river. Aim: To get all safely across the river without any missionaries being eaten. How to solve? TRU-COMP3710 Knowledge Representation

Search Trees – Missionaries & Cannibals The first step in solving the problem is to choose a suitable representation, i.e., a state (a set of values of all instances). We will show number of cannibals, missionaries and canoes on each side of the river. All the objects. Start state is therefore: (# of cannibals, # of missionaries, # of boats) (3,3,1) at the starting side; (0,0,0) at the ending side In fact, since the system is closed, we only need to represent one side of the river, as we can deduce the other side. We will represent the finishing side of the river, and omit the starting side. So start state and goal state are: (0,0,0), (3,3,1) TRU-COMP3710 Knowledge Representation

Search Trees – Missionaries & Cannibals State – (# of cannibals, # of missionaries, # of boats) at the ending side Now we have to choose suitable operators that can be applied: What are the possible states from (0, 0, 0)? Possible states – (0, 1, 1), (0, 2, 1), (1, 0, 1), (1, 1, 1), (2, 0, 1) Which ones are safe? (1, 0, 1), (1, 1, 1), (2, 0, 1) Can we build up a search tree through safe states? TRU-COMP3710 Knowledge Representation

Search Trees – Missionaries & Cannibals Cycles have been removed. What does this mean? Nodes represent states, edges represent operators. There are two shortest paths that lead to the goal. What is a solution here? TRU-COMP3710 Knowledge Representation

Search Trees – Combinatorial Explosion Problems that involve assigning values to a set of variables can grow exponentially with the number of variables. E.g., what is the total number of possible cases with n variables and m values for each variable? How about the n×n tile puzzle? 9!, 16!, 25!, … This is the problem of combinatorial explosion. Some such problems can be extremely hard to solve (NP-Complete, NP-Hard), i.e., it takes a very long time to solve. What do we have to do then? Selecting the correct representation can help to reduce this, as can using heuristics (see chapter 4). TRU-COMP3710 Knowledge Representation

Search Trees – Problem Reduction Another idea is to break a problem down into smaller sub-problems (or sub-goals). Can be represented using goal trees (or and-or trees). Nodes in the tree represent sub-problems. The root node represents the overall problem. Some nodes are and nodes, meaning all their children must be solved. E.g. to solve the Towers of Hanoi problem with 4 disks, you can first solve the same problem with 3 disks. The solution is thus to get from the first diagram on the left, to the second, and then to apply the solution recursively. TRU-COMP3710 Knowledge Representation

Knowledge Representation Review How to represent a problem? Search tree States? Goal states? What is a solution? How to solve the combinatorial explosion problem, i.e., how to search the goal state quickly? One possible idea – Problem reduction TRU-COMP3710 Knowledge Representation