|
Overview
A high-level overview of this NARS implementation
Phase-Design Open-NARS is the open-source version of NARS, a general-purpose AI system, designed in the framework of a reasoning system. NARS works by processing tasks imposed by its environment (human users or other computer systems). Tasks can arrive at any time, and there is no restriction on their contents, as far as they can be expressed in Narsese, the I/O language of NARS (see InputOutputFormat for the Grammar of Narsese). There are three types of tasks:
As a reasoning system, the architecture of NARS consists of a memory, an inference engine, and a control mechanism. The memory contains a collection of concepts, a list of operators, and a buffer for new tasks. Each concept is identified by a term, and contains tasks and beliefs directly on the term, as well as links to related tasks and terms. The inference engine carries out various type of inference, according to a set of built-in rules. Roughly speaking, the control mechanism repeatedly carries out the working cycle of the system, consisting of the following steps:
All the selections in steps 1 and 2 are probabilistic, in the sense that all the items (tasks, beliefs, or concepts) within the scope of the selection have priority values attached, and the probability for each of them to be selected at the current moment is proportional to its priority value. When an new item is produced, its priority value is determined according to its parent items, as well as the type of mechanism that produces it. At step 5, the priority values of all the involved items are adjusted, according to the immediate feedback of the current cycle. The architecture and working cycle are illustrated in http://open-nars.googlecode.com/files/architecture.pdf At the current time, the most comprehensive description of NARS is the book Rigid Flexibility: The Logic of Intelligence. The up to date description of the logic part of the system is in Non-Axiomatic Logic (NAL) Specification. The current code implements most of NAL-1 to NAL-8. Beginners can start at the following on-line materials:
Additional materials:
|