Case-based reasoning
   HOME

TheInfoList



OR:

In
artificial intelligence Artificial intelligence (AI) is intelligence—perceiving, synthesizing, and inferring information—demonstrated by machines, as opposed to intelligence displayed by animals and humans. Example tasks in which this is done include speech ...
and
philosophy Philosophy (from , ) is the systematized study of general and fundamental questions, such as those about existence, reason, knowledge, values, mind, and language. Such questions are often posed as problems to be studied or resolved. ...
, 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 A mechanic is an artisan, skilled tradesperson, or technician who uses tools to build, maintain, or repair machinery, especially cars. Duties Most mechanics specialize in a particular field, such as auto body mechanics, air conditioning an ...
who fixes an
engine An engine or motor is a machine designed to convert one or more forms of energy into mechanical energy. Available energy sources include potential energy (e.g. energy of the Earth's gravitational field as exploited in hydroelectric power ...
by recalling another car that exhibited similar symptoms is using case-based reasoning. A
lawyer A lawyer is a person who practices law. The role of a lawyer varies greatly across different legal jurisdictions. A lawyer can be classified as an advocate, attorney, barrister, canon lawyer, civil law notary, counsel, counselor, solicit ...
who advocates a particular outcome in a
trial In law, a trial is a coming together of parties to a dispute, to present information (in the form of evidence) in a tribunal, a formal setting with the authority to adjudicate claims or disputes. One form of tribunal is a court. The tribun ...
based on
legal Law is a set of rules that are created and are law enforcement, enforceable by social or governmental institutions to regulate behavior,Robertson, ''Crimes against humanity'', 90. with its precise definition a matter of longstanding debate. ...
precedent A precedent is a principle or rule established in a previous legal case that is either binding on or persuasive for a court or other tribunal when deciding subsequent cases with similar issues or facts. Common-law legal systems place great v ...
s or a judge who creates
case law Case law, also used interchangeably with common law, is law that is based on precedents, that is the judicial decisions from previous cases, rather than law based on constitutions, statutes, or regulations. Case law uses the detailed facts of ...
is using case-based reasoning. So, too, an
engineer Engineers, as practitioners of engineering, are professionals who Invention, invent, design, analyze, build and test machines, complex systems, structures, gadgets and materials to fulfill functional objectives and requirements while considerin ...
copying working elements of nature (practicing
biomimicry Biomimetics or biomimicry is the emulation of the models, systems, and elements of nature for the purpose of solving complex human problems. The terms "biomimetics" and "biomimicry" are derived from grc, βίος (''bios''), life, and μίμησ ...
), is treating nature as a database of solutions to problems. Case-based reasoning is a prominent type of
analogy Analogy (from Greek ''analogia'', "proportion", from ''ana-'' "upon, according to" lso "against", "anew"+ ''logos'' "ratio" lso "word, speech, reckoning" is a cognitive process of transferring information or meaning from a particular subject ...
solution making. It has been argued that case-based reasoning is not only a powerful method for
computer reasoning In computer science, in particular in knowledge representation and reasoning and metalogic, the area of automated reasoning is dedicated to understanding different aspects of reasoning. The study of automated reasoning helps produce computer progra ...
, but also a pervasive behavior in everyday human
problem solving Problem solving is the process of achieving a goal by overcoming obstacles, a frequent part of most activities. Problems in need of solutions range from simple personal tasks (e.g. how to turn on an appliance) to complex issues in business an ...
; or, more radically, that all reasoning is based on past cases personally experienced. This view is related to
prototype theory Prototype theory is a theory of categorization in cognitive science, particularly in psychology and cognitive linguistics, in which there is a graded degree of belonging to a conceptual category, and some members are more central than others. It ...
, which is most deeply explored in cognitive science.


Process

Case-based reasoning has been formalized for purposes of
computer reasoning In computer science, in particular in knowledge representation and reasoning and metalogic, the area of automated reasoning is dedicated to understanding different aspects of reasoning. The study of automated reasoning helps produce computer progra ...
as a four-step process:Agnar Aamodt and Enric Plaza,
Case-Based Reasoning: Foundational Issues, Methodological Variations, and System Approaches
" ''Artificial Intelligence Communications'' 7 (1994): 1, 39-52.
# Retrieve: Given a target problem, retrieve cases relevant to solving it from memory. A case consists of a problem, its solution, and, typically, annotations about how the solution was derived. For example, suppose Fred wants to prepare blueberry
pancakes A pancake (or hotcake, griddlecake, or flapjack) is a flat cake, often thin and round, prepared from a starch-based batter that may contain eggs, milk and butter and cooked on a hot surface such as a griddle or frying pan, often frying w ...
. Being a novice cook, the most relevant experience he can recall is one in which he successfully made plain pancakes. The procedure he followed for making the plain pancakes, together with justifications for decisions made along the way, constitutes Fred's retrieved case. # Reuse: Map the solution from the previous case to the target problem. This may involve adapting the solution as needed to fit the new situation. In the pancake example, Fred must adapt his retrieved solution to include the addition of blueberries. # Revise: Having mapped the previous solution to the target situation, test the new solution in the real world (or a simulation) and, if necessary, revise. Suppose Fred adapted his pancake solution by adding blueberries to the batter. After mixing, he discovers that the batter has turned blue – an undesired effect. This suggests the following revision: delay the addition of blueberries until after the batter has been ladled into the pan. # Retain: After the solution has been successfully adapted to the target problem, store the resulting experience as a new case in memory. Fred, accordingly, records his new-found procedure for making blueberry pancakes, thereby enriching his set of stored experiences, and better preparing him for future pancake-making demands.


Comparison to other methods

At first glance, CBR may seem similar to the
rule induction Rule induction is an area of machine learning in which formal rules are extracted from a set of observations. The rules extracted may represent a full scientific model of the data, or merely represent local patterns in the data. Data mining i ...
algorithm In mathematics and computer science, an algorithm () is a finite sequence of rigorous instructions, typically used to solve a class of specific problems or to perform a computation. Algorithms are used as specifications for performing ...
sRule-induction algorithms are procedures for learning rules for a given concept by generalizing from examples of that concept. For example, a rule-induction algorithm might learn rules for forming the plural of English nouns from examples such as ''dog/dogs'', ''fly/flies'', and ''ray/rays''. of
machine learning Machine learning (ML) is a field of inquiry devoted to understanding and building methods that 'learn', that is, methods that leverage data to improve performance on some set of tasks. It is seen as a part of artificial intelligence. Machine ...
. Like a rule-induction algorithm, CBR starts with a set of cases or training examples; it forms generalizations of these examples, albeit implicit ones, by identifying commonalities between a retrieved case and the target problem. If for instance a procedure for plain pancakes is mapped to blueberry pancakes, a decision is made to use the same basic batter and frying method, thus implicitly generalizing the set of situations under which the batter and frying method can be used. The key difference, however, between the implicit generalization in CBR and the generalization in rule induction lies in when the generalization is made. A rule-induction algorithm draws its generalizations from a set of training examples before the target problem is even known; that is, it performs eager generalization. For instance, if a rule-induction algorithm were given recipes for plain pancakes, Dutch apple pancakes, and banana pancakes as its training examples, it would have to derive, at training time, a set of general rules for making all types of pancakes. It would not be until testing time that it would be given, say, the task of cooking blueberry pancakes. The difficulty for the rule-induction algorithm is in anticipating the different directions in which it should attempt to generalize its training examples. This is in contrast to CBR, which delays (implicit) generalization of its cases until testing time – a strategy of lazy generalization. In the pancake example, CBR has already been given the target problem of cooking blueberry pancakes; thus it can generalize its cases exactly as needed to cover this situation. CBR therefore tends to be a good approach for rich, complex domains in which there are myriad ways to generalize a case. In law, there is often explicit delegation of CBR to courts, recognizing the limits of rule based reasons: limiting delay, limited knowledge of future context, limit of negotiated agreement, etc. While CBR in law and cognitively inspired CBR have long been associated, the former is more clearly an interpolation of rule based reasoning, and judgment, while the latter is more closely tied to recall and process adaptation. The difference is clear in their attitude toward error and appellate review.


Criticism

Critics of CBR argue that it is an approach that accepts
anecdotal evidence Anecdotal evidence is evidence based only on personal observation, collected in a casual or non-systematic manner. The term is sometimes used in a legal context to describe certain kinds of testimony which are uncorroborated by objective, indepen ...
as its main operating principle. Without statistically relevant data for backing and implicit generalization, there is no guarantee that the generalization is correct. However, all
inductive reasoning Inductive reasoning is a method of reasoning in which a general principle is derived from a body of observations. It consists of making broad generalizations based on specific observations. Inductive reasoning is distinct from ''deductive'' re ...
where data is too scarce for statistical relevance is inherently based on
anecdotal evidence Anecdotal evidence is evidence based only on personal observation, collected in a casual or non-systematic manner. The term is sometimes used in a legal context to describe certain kinds of testimony which are uncorroborated by objective, indepen ...
.


History

CBR traces its roots to the work of Roger Schank and his students at
Yale University Yale University is a private research university in New Haven, Connecticut. Established in 1701 as the Collegiate School, it is the third-oldest institution of higher education in the United States and among the most prestigious in the w ...
in the early 1980s. Schank's model of dynamic memoryRoger Schank, Dynamic Memory: ''A Theory of Learning in Computers and People'' (New York: Cambridge University Press, 1982). was the basis for the earliest CBR systems: Janet Kolodner's CYRUSJanet Kolodner,
Reconstructive Memory: A Computer Model
" ''Cognitive Science'' 7 (1983): 4.
and Michael Lebowitz's IPP.Michael Lebowitz,
Memory-Based Parsing
," ''Artificial Intelligence'' 21 (1983), 363-404.
Other schools of CBR and closely allied fields emerged in the 1980s, which directed at topics such as legal reasoning, memory-based reasoning (a way of reasoning from examples on massively parallel machines), and combinations of CBR with other reasoning methods. In the 1990s, interest in CBR grew internationally, as evidenced by the establishment of an International Conference on Case-Based Reasoning in 1995, as well as European, German, British, Italian, and other CBR workshops. CBR technology has resulted in the deployment of a number of successful systems, the earliest being Lockheed's CLAVIER,Bill Mark, "Case-Based Reasoning for Autoclave Management," ''Proceedings of the Case-Based Reasoning Workshop'' (1989). a system for laying out composite parts to be baked in an industrial convection oven. CBR has been used extensively in applications such as the Compaq SMART systemTrung Nguyen, Mary Czerwinski, and Dan Lee,
COMPAQ QuickSource: Providing the Consumer with the Power of Artificial Intelligence
" in ''Proceedings of the Fifth Annual Conference on Innovative Applications of Artificial Intelligence'' (Washington, DC: AAAI Press, 1993), 142-151.
and has found a major application area in the health sciences, as well as in structural safety management. There is recent work that develops CBR within a statistical framework and formalizes case-based inference as a specific type of probabilistic inference. Thus, it becomes possible to produce case-based predictions equipped with a certain level of confidence.Eyke Hüllermeier
Case-Based Approximate Reasoning
Springer-Verlag, Berlin, 2007.
One description of the difference between CBR and induction from instances is that
statistical inference Statistical inference is the process of using data analysis to infer properties of an underlying distribution of probability.Upton, G., Cook, I. (2008) ''Oxford Dictionary of Statistics'', OUP. . Inferential statistical analysis infers properti ...
aims to find what tends to make cases similar while CBR aims to encode what suffices to claim similarly. Wilson, Robert Andrew, and Frank C. Keil, eds. The MIT encyclopedia of the cognitive sciences. MIT press, 2001.


See also

*
Abductive reasoning Abductive reasoning (also called abduction,For example: abductive inference, or retroduction) is a form of logical inference formulated and advanced by American philosopher Charles Sanders Peirce beginning in the last third of the 19th century ...
*
Duck test The duck test is a form of abductive reasoning, usually expressed as "If it looks like a duck, swims like a duck, and quacks like a duck, then it probably is a duck." The test implies that a person can identify an unknown subject by observing t ...
*
I know it when I see it The phrase "I know it when I see it" is a colloquial expression by which a speaker attempts to categorize an observable fact or event, although the category is subjective or lacks clearly defined parameters. The phrase was used in 1964 by United St ...
* Commonsense reasoning *
Purposeful omission Purposeful omission is the leaving out of particular nonessential details that can be assumed by the reader (if used in literature), according to the context and attitudes/gestures made by the characters in the stories. It allows for the reader to ...
*
Decision tree A decision tree is a decision support tool that uses a tree-like model of decisions and their possible consequences, including chance event outcomes, resource costs, and utility. It is one way to display an algorithm that only contains con ...
*
Genetic algorithm In computer science and operations research, a genetic algorithm (GA) is a metaheuristic inspired by the process of natural selection that belongs to the larger class of evolutionary algorithms (EA). Genetic algorithms are commonly used to ge ...
* Pattern matching *
Analogy Analogy (from Greek ''analogia'', "proportion", from ''ana-'' "upon, according to" lso "against", "anew"+ ''logos'' "ratio" lso "word, speech, reckoning" is a cognitive process of transferring information or meaning from a particular subject ...
*
K-line (artificial intelligence) A K-line, or Knowledge-line, is a mental agent which represents an association of a group of other mental agents found active when a subject solves a certain problem or formulates a new idea. These were first described in Marvin Minsky Marvin Le ...
*
Ripple down rules Ripple-down rules (RDR) are a way of approaching knowledge acquisition. Knowledge acquisition refers to the transfer of knowledge from human experts to knowledge-based systems. Introductory material Ripple-down rules are an incremental approac ...
*
Casuistry In ethics, casuistry ( ) is a process of reasoning that seeks to resolve moral problems by extracting or extending theoretical rules from a particular case, and reapplying those rules to new instances. This method occurs in applied ethics and ju ...
*
Similarity heuristic Similarity may refer to: In mathematics and computing * Similarity (geometry), the property of sharing the same shape * Matrix similarity, a relation between matrices * Similarity measure, a function that quantifies the similarity of two objects ...


Notes and references


Further reading

* Aamodt, Agnar, and Enric Plaza.
Case-Based Reasoning: Foundational Issues, Methodological Variations, and System Approaches
''Artificial Intelligence Communications'' 7, no. 1 (1994): 39–52. * Althoff, Klaus-Dieter, Ralph Bergmann, and L. Karl Branting, eds. ''Case-Based Reasoning Research and Development: Proceedings of the Third International Conference on Case-Based Reasoning''. Berlin: Springer Verlag, 1999. * Bergmann, Ralph ''Experience Management: Foundations, Development Methodology, and Internet-Based Applications''. Springer, LNAI 2432,2002. * Bergmann, R., Althoff, K.-D., Breen, S., Göker, M., Manago, M., Traphöner, R., and Wess, S. ''Developing industrial case-based reasoning applications: The INRECA methodology.'' Springer LNAI 1612, 2003. * Kolodner, Janet. ''Case-Based Reasoning''. San Mateo: Morgan Kaufmann, 1993. * Leake, David.

, In Leake, D., editor, Case-Based Reasoning: Experiences, Lessons, and Future Directions. AAAI Press/MIT Press, 1996, 1-30. * Leake, David, and Enric Plaza, eds. ''Case-Based Reasoning Research and Development: Proceedings of the Second International Conference on Case-Based Reasoning''. Berlin: Springer Verlag, 1997. * * Oxman, Rivka. ''Precedents in Design: a Computational Model for the Organization of Precedent Knowledge'', Design Studies, Vol. 15 No. 2 pp. 141–157 * Riesbeck, Christopher, and Roger Schank. ''Inside Case-based Reasoning''. Northvale, NJ: Erlbaum, 1989. * Veloso, Manuela, and Agnar Aamodt, eds.
Case-Based Reasoning Research and Development: Proceedings of the First International Conference on Case-Based Reasoning
'. Berlin: Springer Verlag, 1995. * Watson, Ian. ''Applying Case-Based Reasoning: Techniques for Enterprise Systems''. San Francisco: Morgan Kaufmann, 1997.


External links


GAIA – Group of Artificial Intelligence Applications
---- ''A
earlier version
of the above article was posted on Nupedia.'' {{DEFAULTSORT:Case-Based Reasoning Classification algorithms Inductive reasoning Reasoning