Production System

From Computer Science Wiki
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
Artificial Intelligence[1]

Production system are like a cognitive architecture where knowledge is represented as rules.

Cognitive Agent

We might think of a cognitive agent as a function which maps a perceptual history into an action. One of the major tasks of a cognitive agent is to select an action. When we take an action, it is based on historical perception.

We assume cognitive agents:

  1. are goal-oriented
  2. exist in rich, complex, environments
  3. use knowledge about the world to make decisions about their action
  4. use symbols and abstractions to capture important information and ignore unimportant details
  5. capture knowledge as symbols
  6. flexible about the function of their environment. As the environment changes, so does their behavior.
  7. learn from their experiences

Architecture + content = behavior

SOAR

The goal of the Soar project is to develop the fixed computational building blocks necessary for general intelligent agents – agents that can perform a wide range of tasks and encode, use, and learn all types of knowledge to realize the full range of cognitive capabilities found in humans, such as decision making, problem solving, planning, and natural language understanding. It is both a theory of what cognition is and a computational implementation of that theory. [2]

SOAR is concerned with categories of knowledge. There are 3 kinds of knowledge: Procedural, Semantic and Episodic which feed into working memory.

Episodic

  • Specific instance of events

Procedural

  • How do we do certain tasks?
  • Knowledge is represented as rules

Semantic

  • Generalizations about models in the world


Chunking

A process (a learning technique) used when there is an impasse (conflicting rules). We look for a rule that can break an impasse.

References