Rule-Based Expert System Aziz Kustiyo Departemen Ilmu Komputer FMIPA IPB 2011.

Slides:



Advertisements
Similar presentations
Modelling with expert systems. Expert systems Modelling with expert systems Coaching modelling with expert systems Advantages and limitations of modelling.
Advertisements

Rule-based representation
CHAPTER 13 Inference Techniques. Reasoning in Artificial Intelligence n Knowledge must be processed (reasoned with) n Computer program accesses knowledge.
1 Rule Based Systems Introduction to Production System Architecture.
Rulebase Expert System and Uncertainty. Rule-based ES Rules as a knowledge representation technique Type of rules :- relation, recommendation, directive,
CS 484 – Artificial Intelligence1 Announcements Choose Research Topic by today Project 1 is due Thursday, October 11 Midterm is Thursday, October 18 Book.
Forward Chaining and Backward Chaining. Inference Engine cycles via a match-fire procedure Knowledge Base Database Fact:A isx MatchFire Fact:B isy Rule:
Supporting Business Decisions Expert Systems. Expert system definition Possible working definition of an expert system: –“A computer system with a knowledge.
Inferences The Reasoning Power of Expert Systems.
Expert System Shells - Examples
Reasoning System.  Reasoning with rules  Forward chaining  Backward chaining  Rule examples  Fuzzy rule systems  Planning.
Intelligent systems Lecture 6 Rules, Semantic nets.
Knowledge Engineering.  Process of acquiring knowledge from experts and building knowledge base  Narrow perspective  Knowledge acquisition, representation,
Rule Based Systems Michael J. Watts
Artificial Intelligence Lecture No. 16
Chapter 12: Expert Systems Design Examples
Rule Based Systems Alford Academy Business Education and Computing
Intelligent Systems and Soft Computing
Expert System Human expert level performance Limited application area Large component of task specific knowledge Knowledge based system Task specific knowledge.
Introduction to Expert Systems
 Negnevitsky, Pearson Education, Lecture 2 Rule-based expert systems n Introduction, or what is knowledge? n Rules as a knowledge representation.
1 5.0 Expert Systems Outline 5.1 Introduction 5.2 Rules for Knowledge Representation 5.3 Types of rules 5.4 Rule-based systems 5.5 Reasoning approaches.
Lecture 04 Rule Representation
CIS 430 ( Expert System ) Supervised By : Mr. Ashraf Yaseen Student name : Ziad N. Al-A’abed Student # : EXPERT SYSTEM.
Designing A KBS Rulebase Expert System Uncertainty Management
1 Pertemuan 6 RULE-BASED SYSTEMS Matakuliah: H0383/Sistem Berbasis Pengetahuan Tahun: 2005 Versi: 1/0.
1 Chapter 9 Rules and Expert Systems. 2 Chapter 9 Contents (1) l Rules for Knowledge Representation l Rule Based Production Systems l Forward Chaining.
Rules and Expert Systems
© C. Kemke1Reasoning - Introduction COMP 4200: Expert Systems Dr. Christel Kemke Department of Computer Science University of Manitoba.
Production Rules Rule-Based Systems. 2 Production Rules Specify what you should do or what you could conclude in different situations. Specify what you.
Week 6 Expert System. Case Scenario During ABC Enterprise management meeting to discuss whether the company should consider a merger with other business.
Marakas: Decision Support Systems, 2nd Edition © 2003, Prentice-Hall Chapter Chapter 7: Expert Systems and Artificial Intelligence Decision Support.
EXPERT SYSTEMS Part I.
Inferencing using forward- and backward-chaining.
Building Knowledge-Driven DSS and Mining Data
Introduction to Rule-Based Systems, Expert Systems, Fuzzy Systems Introduction to Rule-Based Systems, Expert Systems, Fuzzy Systems (sections 2.7, 2.8,
Sepandar Sepehr McMaster University November 2008
© Negnevitsky, Pearson Education, Lecture 2 Introduction, or what is knowledge? Introduction, or what is knowledge? Rules as a knowledge representation.
Expert Systems Infsy 540 Dr. Ocker. Expert Systems n computer systems which try to mimic human expertise n produce a decision that does not require judgment.
1 Backward-Chaining Rule-Based Systems Elnaz Nouri December 2007.
Artificial Intelligence Lecture No. 15 Dr. Asad Ali Safi ​ Assistant Professor, Department of Computer Science, COMSATS Institute of Information Technology.
Rule-Based Expert Systems
13: Inference Techniques
School of Computer Science and Technology, Tianjin University
Knowledge based Humans use heuristics a great deal in their problem solving. Of course, if the heuristic does fail, it is necessary for the problem solver.
Chapter 9: Rules and Expert Systems Lora Streeter.
 Architecture and Description Of Module Architecture and Description Of Module  KNOWLEDGE BASE KNOWLEDGE BASE  PRODUCTION RULES PRODUCTION RULES 
MNF IT-272 Kunstig intelligens - høst 2002 Forelesning 6. Emner: Kunnskapsintensiv problemløsning - kunnskapbaserte systemer, ekspertsystemer Regelbaserte.
Knowledge Representation
Expert System Note: Some slides and/or pictures are adapted from Lecture slides / Books of Dr Zafar Alvi. Text Book - Aritificial Intelligence Illuminated.
COM362 Knowledge Engineering Inferencing 1 Inferencing: Forward and Backward Chaining John MacIntyre
Inferencing in rule-based systems: forward and backward chaining.
1 Intelligent Systems and Control Rule-based expert systems n Introduction, or what is knowledge? n Rules as a knowledge representation technique n The.
 Negnevitsky, Pearson Education, Introduction, or what is knowledge? Knowledge is a theoretical or practical understanding of a subject or a domain.
Lecture 2 Introduction, or what is knowledge? Introduction, or what is knowledge? Rules as a knowledge representation technique Rules as a knowledge representation.
Artificial Intelligence
Forward and Backward Chaining
Expert System Seyed Hashem Davarpanah University of Science and Culture.
ITEC 1010 Information and Organizations Chapter V Expert Systems.
EXPERT SYSTEMS GROUP F.
Knowledge Engineering. Sources of Knowledge - Books - Journals - Manuals - Reports - Films - Databases - Pictures - Audio and Video Tapes - Flow Diagram.
Artificial Intelligence: Applications
Lecture 20. Recap The main components of an ES are –Knowledge Base (LTM) –Working Memory (STM) –Inference Engine (Reasoning)
Advanced AI Session 2 Rule Based Expert System
Intelligent Systems and Soft Computing
Chapter 9. Rules and Expert Systems
Rule-based Expert Systems
Rule-based expert systems
Introduction to Expert Systems Bai Xiao
Chapter 9. Rules and Expert Systems
Presentation transcript:

Rule-Based Expert System Aziz Kustiyo Departemen Ilmu Komputer FMIPA IPB 2011

Knowledge Representation Techniques (by Barr and Feigenbaum, 1981) Object-attribute-value triples Rules Semantic network Frames Logic

Rule-based Expert Systems A rule-based expert system is an expert system (see intro) which works as a production system in which rules encode expert knowledge. Most expert systems are rule-based. Alternatives are frame-based - knowledge is associated with the objects of interest and reasoning consists of confirming expectations for slot values. Such systems often include rules too.

Rule-based Expert Systems model-based, where the entire system models the real world, and this deep knowledge is used to e.g. diagnose equipment malfunctions, by comparing model predicted outcomes with actual observed outcomes case-based - previous examples (cases) of the task and its solution are stored. To solve a new problem the closest matching case is retrieved, and its solution or an adaptation of it is proposed as the solution to the new problem.

Production rules A production rule consists of two parts: condition (antecedent) part and conclusion (action, consequent) part, i.e: IF (conditions) THEN (actions) Example IF Gauge is OK AND [TEMPERATURE] > 120 THEN Cooling system is in the state of overheating N. Kasabov, Foundations of Neural Networks, Fuzzy Systems, and Knowledge Engineering, MIT Press, 1996

Advantages of rule-based expert systems Natural knowledge representation. – An expert usually explains the problem-solving procedure with such expressions as this: “In such-and-such situation, I do so-and-so”. – These expressions can be represented quite naturally as IF-THEN production rules. Uniform structure. – Production rules have the uniform IF-THEN structure. – Each rule is an independent piece of knowledge. – The very syntax of production rules enables them to be self- documented.

Advantages of rule-based expert systems Separation of knowledge from its processing. – The structure of a rule-based expert system provides an effective separation of the knowledge base from the inference engine. – Thus possible to develop different applications using the same expert system shell. Dealing with incomplete and uncertain knowledge. – Most rule-based expert systems are capable of representing and reasoning with incomplete and uncertain knowledge. Example: fuzzy rule based system

Disadvantages of rule-based expert systems Opaque relations between rules – Although individual rules are relatively simple and self-documented, their logical interactions within the large set of rules may be opaque. – Rule-based systems make it difficult to observe how individual rules serve the overall strategy. Ineffective search strategy – Inference engine applies an exhaustive search through all the rules during each cycle. – Large set of rules (over 100 rules) can be slow, and large rule-based systems can be unsuitable for real-time applications. Inability to learn – Cannot automatically modify its existing rules or add new ones. – Knowledge engineer still responsible for revising / maintaining the system.

Rules Techniques Rule is a knowledge structure that relates some known information to other information that can be concluded or inferred to be known  Procedural Knowledge IF … THEN …ELSE Ex : IF the ball’s color is blue THEN I like the ball IF Today’s time is after 10 am ANDToday is weekday AND I am at home OR My boss called and said that I am late for work THEN I am late for work ELSE I am not late for work

Rules Based System Use rules to encode the knowledge in the system General rule syntax : – if then if I put my hand on a hot iron, then it will burn if I want my car to stop, then apply pressure to the brake Fact (or assertion) : – a statement that something is true I put my hand on a hot iron I want my car to stop

Components of a Rule Based Expert System A rule-based expert system contains : – Set of rules - stored in knowledge base – Working memory or database of facts – Rule interpreter - or inference engine – User interface – Explanation module These five components are essential for any rule based expert system

Basic structure of a rule-based expert system

Basic Components of a Rule Based Expert System The knowledge base: – Contains the domain knowledge useful for problem solving. – In a rule-based expert system, knowledge is represented as a set of rules. – Each rule specifies a relation, recommendation, directive, strategy or heuristic and has the IF (condition) THEN (action) structure. – When the condition part of a rule is satisfied, the rule is said to fire and the action part is executed The database: – Includes a set of facts used to match against the IF (condition) parts of rules stored in the knowledge base

Basic Components of a Rule Based Expert System The inference engine: – Carries out the reasoning – Links the rules given in the knowledge base with the facts provided in the database The explanation facilities: – Enable the user to ask the expert system how a particular conclusion is reached and why a specific fact is needed. – An expert system must be able to explain its reasoning and justify its advice, analysis or conclusion. The user interface: – Means of communication between a user seeking a solution to the problem and an expert system.

Additional Components In addition to the essential components there can be: External databases – Many Expert System shells have ODBC capabilities External Progams Developer Interface – Includes Knowledge base editors Debugging Aids

Additional structure of a rule-based expert system

Rule-based system operation Q : Ball’s color ? A : Red IF Ball’s Color is Red THEN I Like the Ball IF I Like the Ball THEN I Will buy the Ball IF Ball’s Color is Red THEN I Like the Ball IF I Like the Ball THEN I Will buy the Ball Ball’s Color is Red I Like the Ball I Will Buy the Ball Ball’s Color is Red I Like the Ball I Will Buy the Ball Knowledge Base Working Memory

Inferencing Strategies Two strategies: – Forward chaining  data driven – Backward chaining  goal driven

Forward Chaining - Data Driven Forward chaining: – Is data driven reasoning - the reasoning starts from the known data and proceeds forward with that data – Start with a set of facts ( i.e. assertions) – Match conditions of rules against items in database – When rule is fired, add consequent to database – Continue until no rules left to fire

Inference Engine cycles via a match-fire procedure Knowledge Base Database Fact:A isx MatchFire Fact:B isy Rule: IFA isx THEN B is y

E Database ABCD X MatchFire Knowledge Base X & B &EY ZY & D LC L &M AX N E Forward chaining E X Database ABCD MatchFire Knowledge Base X & B & EY ZY & D LC L & M AX N L Cycle One Cycle One

Forward chaining Cycle Two Cycle Three Y Z

Forward chaining Example Rule 1 If patient has sore throat And suspect a bacterial Infection Then patient has strep throat Rule 2 If patient temperature > 100 Then patient has a fever Rule 3 If patient has been sick over one month And patient has a fever Then we suspect a bacterial Infection

Forward chaining Example Cycle 1: Rule 2 true -> conclude Patient has a fever patient temperature = 102 patient been sick for two months patient has sore throat Database patient has a fever bacterial infection patient has strep throat Cycle 3 : Rule 1 true -> conclude patient has strep throat Cycle 2: Rule 3 true -> conclude bacterial infection

Backward Chaining – Goal Driven In contrast backward chaining: – goal driven, try to prove a specific goal – Work backwards from a conclusion and try to reach a set of conditions which establish that conclusion. – Start with a goal and use this to establish a set of sub-goals. – continue until goal is proved (or disproved), or no more matches

Backward chaining Backward chaining is the goal-driven reasoning. In backward chaining, an expert system has the goal (a hypothetical solution) and the inference engine attempts to find the evidence to prove it. First, the knowledge base is searched to find rules that might have the desired solution. Such rules must have the goal in their THEN (action) parts. If such a rule is found and its IF (condition) part matches data in the database, then the rule is fired and the goal is proved. However, this is rarely the case.

Backward chaining Thus the inference engine puts aside the rule it is working with (the rule is said to stack) And sets up a new goal, a subgoal, to prove the IF part of this rule The knowledge base is searched again for rules that can prove the subgoal The inference engine repeats the process of stacking the rules until no rules are found in the knowledge base to prove the current subgoal

Backward Chaining – Example 1 Goal: Z Knowledge Base Pass 1 Database BCDEA Z X & B & EY LC L & M AX N ZY & D Knowledge Base Sub-Goal: Y ABCDE Y ? X & B & EY ZY & D LC L & M AX N Pass 2 Database Sub-Goal: X Knowledge Base ABCDE X ? LC L & MN X & B & EY ZY & D AX Pass 3 Database

Backward Chaining – Example 1 Goal: Z Knowledge Base ACDE ZY B X MatchFire X & B &EY ZY & D LC L &M AX N Pass 6 Database MatchFire Knowledge Base ABCDE X Sub-Goal: X Pass 4 X & B &EY ZY & D LC L &M AX N Database Sub-Goal: Y MatchFire Knowledge Base ACDE YX B X & B &EY LC L &M AX N ZY & D Pass 5 Database

Backward Chaining - Example 2 Rule 1 If patient has sore throat And suspect a bacterial Infection Then patient has strep throat Rule 2 If patient temperature > 100 Then patient has a fever Rule 3 If patient has been sick over one month And patient has a fever Then we suspect a bacterial Infection Start with same set of facts: patient temperature = 102 patient has been sick for two months patient has sore throat But now start with goal Patient has a strep throat And try to prove this given the rules and the facts.

Example 2 : Backward Chaining Strep throat? Sore throat bacterial infection fever Temp>100 Sick > One month

Choosing between forward and backward chaining? If an expert first needs to gather some information and then tries to infer from it whatever can be inferred, choose the forward chaining inference engine. However, if your expert begins with a hypothetical solution and then attempts to find facts to prove it, choose the backward chaining inference engine.

Forward Chaining - Evaluation Advantages: – Works well when problem naturally begins by gathering information – Planning, control, monitoring Disadvantages: – Difficult to recognise if some evidence is more important than others – May ask un-related questions

Backward Chaining - Evaluation Advantages: – Remains focussed on a goal – Produces a series of questions that are relevant – Good for diagnosis Disadvantages: – Will continue to follow a line of reasoning even when it should switch.

Meta-Knowledge Meta-knowledge can be simply defined as knowledge about knowledge. Meta-knowledge is knowledge about the use and control of domain knowledge in an expert system. In rule-based expert systems, meta-knowledge is represented by meta-rules. A meta-rule determines a strategy for the use of task-specific rules in the expert system. Example meta-rule: IF the computer will not boot AND the electrical system is operating normally THEN use rules concerning the bios

Meta-rules

Forward Chaining - Summary Present to future Antecedent to consequent – Antecedent determine search Data driven Work forward to find what solutions follow from facts No explanation available Uses: – Planning, monitoring, control

Backward Chaining - Summary Present to past Consequent to antecedent – Consequent determine search Goal driven Work backwards to find facts that support hypothesis. Explanation available Uses: – Diagnosis

pustaka Yeni Herdiyeni Materi kuliah Representasi pengetahuan dan Sistem Inferensia Materi lain dari berbagai sumber