Ripple-down Rules
   HOME

TheInfoList



OR:

Ripple-down rules (RDR) are a way of approaching
knowledge acquisition Knowledge acquisition is the process used to define the rules and ontologies required for a knowledge-based system. The phrase was first used in conjunction with expert systems to describe the initial tasks associated with developing an expert s ...
. Knowledge acquisition refers to the transfer of knowledge from human experts to
knowledge-based systems A knowledge-based system (KBS) is a computer program that reasons and uses a knowledge base to solve complex problems. Knowledge-based systems were the focus of early artificial intelligence researchers in the 1980s. The term can refer to a b ...
.


Introductory material

Ripple-down rules are an incremental approach to
knowledge acquisition Knowledge acquisition is the process used to define the rules and ontologies required for a knowledge-based system. The phrase was first used in conjunction with expert systems to describe the initial tasks associated with developing an expert s ...
and covers a family of techniques. RDR were proposed by Compton and Jansen based on experience maintaining the expert system GARVAN-ES1 (Compton and Jansen 1988). The original GARVAN-ES1 (Horn et al. 1985) employed a knowledge acquisition process, based on Test Driven Development, where new cases that were poorly classified by the system were added to a data base and then used to incrementally refine the knowledge base. The added cases, whose conclusions conflicted with the advice of the system were termed "cornerstone cases". Consequently, the data base grew iteratively with each refinement to the knowledge. The data base could then be used to test changes to the knowledge. Knowledge acquisition tools, similar to those provided by Teiresias were developed to find and help modify the conflicting rules. The tools would display the rules fired by each case and suggestions to "edit" the knowledge to remove the conflicts. In the RDR framework, the human expert's knowledge is acquired based on the current context and is added incrementally. Compton and Jansen argued that the expert's knowledge is to some extent 'made up' to justify why she was right, not to explain how she reached this right interpretation (or conclusion). The justification is based on features that are identified from the current case. The expert creates a rule for classifying cases corresponding to a particular context. This rule is unlikely to classify all cases belonging to the class. Compton and Jansen asserted that it is not possible to create a single elegant context free rule as the knowledge we communicate is a justification in a context. This implies that there is no absolute knowledge that acts as foundation of other knowledge, since knowledge is only true in a context (Compton and Jansen 1990).


Methodology

Ripple-down rules consist of a data structure and knowledge acquisition scenarios. Human experts' knowledge is stored in the data structure. The knowledge is coded as a set of rules. The process of transferring human experts' knowledge to Knowledge-based systems in RDR is explained in knowledge acquisition scenario.


Data structure

There are various structures of ripple-down rules, for example single-classification ripple-down rules (SCRDR), multiple-classification ripple-down rules (MCRDR), nested ripple-down rules (NRDR) and repeat-inference multiple-classification ripple-down rules (RIMCRDR). The data structure of RDR described here is SCRDR, which is the simplest structure. The data structure is similar to a
decision tree A decision tree is a decision support system, decision support recursive partitioning structure that uses a Tree (graph theory), tree-like Causal model, model of decisions and their possible consequences, including probability, chance event ou ...
. Each node has a rule; the format of this rule is IF cond1 AND cond2 AND ... AND THEN conclusion. Cond1 is a condition (boolean evaluation), for example A=1, and . Each node has exactly two successor nodes, these successor nodes are connected to predecessor node by "ELSE" or "EXCEPT". An example of SCRDR tree (defined recursively) is shown below: IF (OutLook = "SUNNY" AND Temperature = "COOL") THEN PLAY="TENNIS" EXCEPT Child-1 ELSE Child-2 where Child-1 and Child-2 are also SCRDR trees. For example, Child-1 is: IF (Wind = "WINDY" AND Humidity = "HIGH") THEN Play="SQUASH" EXCEPT NoChild ELSE NoChild


Knowledge-acquisition scenario

Human experts provide a case to the system and they add a new rule to correct the classification of a misclassified case. For example, rule Child-1 is added to correct classification of case utLook="SUNNY", Temperature="COOL", Wind="WINDY", Humidity="HIGH", ForeCast="STORM", Play="SQUASH" This case is misclassified as Play="TENNIS". When a rule is constructed by the human experts, the conditions of this rule should be satisfied by the misclassified case and also they should NOT be satisfied by any previous cases classified correctly by the parent rule (which in this context is the first rule).


Implementations

Below is a list of known implementations of RDR: * The alpha version of RDR (MCRDR) Framework was developed by the University of New South Wales (UNSW) and University of Tasmania (UTAS) Research Team and funded by ARC. * RDR (MCRDR) document classifier was developed by Dr. Yang Sok Kim, UNSW and AProf. Byeong Ho Kang, UTAS. * The Erudine Behaviour Engine is a commercial software product that employs RDRs as part of its methodology for knowledge capture and business process modelling. It is implemented in Java. * The Ballarat Incremental Knowledge Engine (BIKE) is a comprehensive open source implementation in C++. It includes plugins for single-classification and multiple-classification RDRs. * Pacific Knowledge Systems (PKS) uses a commercial product called RippleDown Expert that is based on multiple-classification ripple-down rules. * The
Java Java is one of the Greater Sunda Islands in Indonesia. It is bordered by the Indian Ocean to the south and the Java Sea (a part of Pacific Ocean) to the north. With a population of 156.9 million people (including Madura) in mid 2024, proje ...
data-mining software
Weka The weka, also known as the Māori hen or woodhen (''Gallirallus australis'') is a flightless bird species of the rail family. It is endemic to New Zealand. Some authorities consider it as the only extant member of the genus '' Gallirallus''. ...
has a version of Induct RDR called Ridor. It learns rules from a data set with the principal aim to predict a class within a test set. * RDRPOSTagger toolkit: Single-classification ripple-down rules for part-of-speech tagging * RDRsegmenter toolkit: Single-classification ripple-down rules for word segmentation


See also

*
Case-based reasoning Case-based reasoning (CBR), broadly construed, is the process of solving new problems based on the solutions of similar past problems. In everyday life, an auto mechanic who fixes an engine by recalling another car that exhibited similar sympto ...
*
Decision trees A decision tree is a decision support system, decision support recursive partitioning structure that uses a Tree (graph theory), tree-like Causal model, model of decisions and their possible consequences, including probability, chance event ou ...
* Multiple-classification ripple-down rules (MCRDR)


References

* * * * * * * * *


External links


RDRPOSTagger toolkit

RDRsegmenter toolkit
{{DEFAULTSORT:Ripple Down Rules Knowledge management Rules