HOME

TheInfoList



OR:

In
artificial intelligence Artificial intelligence (AI) is the capability of computer, computational systems to perform tasks typically associated with human intelligence, such as learning, reasoning, problem-solving, perception, and decision-making. It is a field of re ...
, a procedural reasoning system (PRS) is a framework for constructing real-time reasoning systems that can perform complex tasks in dynamic environments. It is based on the notion of a
rational agent A rational agent or rational being is a person or entity that always aims to perform optimal actions based on given premises and information. A rational agent can be anything that makes decisions, typically a person, firm, machine, or software. ...
or
intelligent agent In artificial intelligence, an intelligent agent is an entity that Machine perception, perceives its environment, takes actions autonomously to achieve goals, and may improve its performance through machine learning or by acquiring knowledge r ...
using the belief–desire–intention software model. A user application is predominately defined, and provided to a PRS system is a set of ''knowledge areas''. Each knowledge area is a piece of
procedural knowledge Procedural knowledge (also known as know-how, knowing-how, and sometimes referred to as practical knowledge, imperative knowledge, or performative knowledge) is the knowledge exercised in the performance of some task. Unlike descriptive knowledge ...
that specifies how to do something, e.g., how to navigate down a corridor, or how to plan a path (in contrast with robotic architectures where the
programmer A programmer, computer programmer or coder is an author of computer source code someone with skill in computer programming. The professional titles Software development, ''software developer'' and Software engineering, ''software engineer' ...
just provides a model of what the states of the world are and how the agent's primitive actions affect them). Such a program, together with a PRS
interpreter Interpreting is translation from a spoken or signed language into another language, usually in real time to facilitate live communication. It is distinguished from the translation of a written text, which can be more deliberative and make use o ...
, is used to control the agent. The interpreter is responsible for maintaining beliefs about the world state, choosing which goals to attempt to achieve next, and choosing which knowledge area to apply in the current situation. How exactly these operations are performed might depend on domain-specific meta-level knowledge areas. Unlike traditional AI planning systems that generate a complete plan at the beginning, and replan if unexpected things happen, PRS interleaves planning and doing actions in the world. At any point, the system might only have a partially specified plan for the future. PRS is based on the BDI or belief–desire–intention framework for intelligent agents. Beliefs consist of what the agent believes to be true about the current state of the world, desires consist of the agent's goals, and intentions consist of the agent's current plans for achieving those goals. Furthermore, each of these three components is typically ''explicitly'' represented somewhere within the memory of the PRS agent at runtime, which is in contrast to purely reactive systems, such as the
subsumption architecture Subsumption architecture is a reactive robotic architecture heavily associated with behavior-based robotics which was very popular in the 1980s and 90s. The term was introduced by Rodney Brooks and colleagues in 1986.Brooks, R. A., "A Robust Pro ...
.


History

The PRS concept was developed by the
Artificial Intelligence Center The Artificial Intelligence Center is a laboratory in the Information and Computing Sciences Division of SRI International. It was founded in 1966 by Charles Rosen and studies artificial intelligence. One of their early projects was Shakey the ...
at
SRI International SRI International (SRI) is a nonprofit organization, nonprofit scientific research, scientific research institute and organization headquartered in Menlo Park, California, United States. It was established in 1946 by trustees of Stanford Univer ...
during the 1980s, by many workers including Michael Georgeff, Amy L. Lansky, and François Félix Ingrand. Their framework was responsible for exploiting and popularizing the BDI model in software for control of an
intelligent agent In artificial intelligence, an intelligent agent is an entity that Machine perception, perceives its environment, takes actions autonomously to achieve goals, and may improve its performance through machine learning or by acquiring knowledge r ...
. The seminal application of the framework was a fault detection system for the reaction control system of the
NASA The National Aeronautics and Space Administration (NASA ) is an independent agencies of the United States government, independent agency of the federal government of the United States, US federal government responsible for the United States ...
Space Shuttle Discovery Space Shuttle ''Discovery'' (Orbiter Vehicle Designation: OV-103) is a retired American Space Shuttle orbiter. The spaceplane was one of the Space Shuttle orbiter, orbiters from NASA's Space Shuttle program and the third of five fully opera ...
. Development on this PRS continued at the Australian Artificial Intelligence Institute through to the late 1990s, which led to the development of a C++ implementation and extension called dMARS.


Architecture

The system architecture of SRI's PRS includes the following components: * Database for beliefs about the world, represented using first order predicate calculus. * Goals to be realized by the system as conditions over an interval of time on internal and external state descriptions (desires). * Knowledge areas (KAs) or plans that define sequences of low-level actions toward achieving a goal in specific situations. * Intentions that include those KAs that have been selected for current and eventual execution. * Interpreter or inference mechanism that manages the system.


Features

SRI's PRS was developed for embedded application in dynamic and real-time environments. As such it specifically addressed the limitations of other contemporary control and reasoning architectures like
expert system In artificial intelligence (AI), an expert system is a computer system emulating the decision-making ability of a human expert. Expert systems are designed to solve complex problems by reasoning through bodies of knowledge, represented mainly as ...
s and the blackboard system. The following define the general requirements for the development of their PRS: * asynchronous event handling * guaranteed reaction and response types * procedural representation of knowledge * handling of multiple problems * reactive and goal-directed behavior * focus of attention * reflective reasoning capabilities * continuous embedded operation * handling of incomplete or inaccurate data * handling of transients * modeling delayed feedback * operator control


Applications

The seminal application of SRI's PRS was a monitoring and fault detection system for the reaction control system (RCS) on the NASA space shuttle. The RCS provides propulsive forces from a collection of jet thrusters and controls altitude of the space shuttle. A PRS-based fault diagnostic system was developed and tested using a simulator. It included over 100 KAs and over 25 meta level KAs. RCS specific KAs were written by space shuttle mission controllers. It was implemented on the
Symbolics Symbolics, Inc., is a privately held American computer software maker that acquired the assets of the former manufacturing company of the identical name and continues to sell and maintain the Open Genera Lisp (programming language), Lisp sy ...
3600 Series
LISP Lisp (historically LISP, an abbreviation of "list processing") is a family of programming languages with a long history and a distinctive, fully parenthesized Polish notation#Explanation, prefix notation. Originally specified in the late 1950s, ...
machine and used multiple communicating instances of PRS. The system maintained over 1000 facts about the RCS, over 650 facts for the forward RCS alone and half of which are updated continuously during the mission. A version of the PRS was used to monitor the reaction control system on the
NASA The National Aeronautics and Space Administration (NASA ) is an independent agencies of the United States government, independent agency of the federal government of the United States, US federal government responsible for the United States ...
Space Shuttle Discovery Space Shuttle ''Discovery'' (Orbiter Vehicle Designation: OV-103) is a retired American Space Shuttle orbiter. The spaceplane was one of the Space Shuttle orbiter, orbiters from NASA's Space Shuttle program and the third of five fully opera ...
. PRS was tested on Shakey the robot including navigational and simulated jet malfunction scenarios based on the space shuttle. Later applications included a network management monitor called the Interactive Real-time Telecommunications Network Management System (IRTNMS) for Telecom Australia.


Extensions

The following list the major implementations and extensions of the PRS architecture. * UM-PRS * OpenPRS (formerly C-PRS and Propice) * AgentSpeak * Distributed multi-agent reasoning system (dMARS) * GORITE * JAM * JACK Intelligent Agents * SRI Procedural Agent Realization Kit (SPARK) * PRS-CL


See also

* Distributed multi-agent reasoning system * JACK Intelligent Agents * Belief–desire–intention software model *
Intelligent agent In artificial intelligence, an intelligent agent is an entity that Machine perception, perceives its environment, takes actions autonomously to achieve goals, and may improve its performance through machine learning or by acquiring knowledge r ...


References


Further reading

* M.P. Georgeff and A.L. Lansky. "A system for reasoning in dynamic domains: Fault diagnosis on the space shuttle" Technical Note 375, Artificial Intelligence Center, SRI International, 1986. * Michael P. Georgeff, Amy L. Lansky, Marcel J. Schoppers.
Reasoning and Planning in Dynamic Domains: An Experiment with a Mobile Robot
Technical Note 380, Artificial Intelligence Center, SRI International, 1987. * M. Georgeff, and A. L. Lansky (1987)
Procedural knowledge
Proceedings of the IEEE 74(10):1383–1398, IEEE Press. * Georgeff, Michael P.; Ingrand, Francois Felix.
Research on procedural reasoning systems
Final Report – Phase 1, Artificial Intelligence Center, SRI International, 1988. * Michael P. Georgeff and François Félix Ingrand
Decision-Making in an Embedded Reasoning System
Proceedings of the Eleventh International Joint Conference on Artificial Intelligence, Detroit (Michigan), August 1989. * K. L. Myers
User Guide for the Procedural Reasoning System
Technical Report, Artificial Intelligence Center, Technical Report, SRI International, Menlo Park, CA, 1997

Spinoff, NASA, 2006


External links


PRS-CL: A Procedural Reasoning System
An extension to PRS maintained by SRI International {{Automated reasoning Knowledge representation Cognitive architecture Multi-agent systems Agent-based programming languages SRI International software