All Projects → opennars → ALANN2018

opennars / ALANN2018

Licence: MIT license
Adaptive Logic and Neural Network (ALANN) version of NARS style General Machine Intelligence (GMI)

Programming Languages

F#
602 projects
C#
18002 projects

Projects that are alternatives of or similar to ALANN2018

Narjure
A Clojure implementation of the Non-Axiomatic Reasoning System proposed by Pei Wang.
Stars: ✭ 41 (+70.83%)
Mutual labels:  agi, nars, reasoner, nal
OpenNARS-for-Applications
General reasoning component for applications based on NARS theory.
Stars: ✭ 68 (+183.33%)
Mutual labels:  nars, reasoner, nal
ProbQA
Probabilistic question-asking system: the program asks, the users answer. The minimal goal of the program is to identify what the user needs (a target), even if the user is not aware of the existence of such a thing/product/service.
Stars: ✭ 43 (+79.17%)
Mutual labels:  agi
Leisuresuitlarry
Leisure Suit Larry Script and Definition Files, by Al Lowe for Sierra (1987)
Stars: ✭ 134 (+458.33%)
Mutual labels:  agi
Pathnet Pytorch
PyTorch implementation of PathNet: Evolution Channels Gradient Descent in Super Neural Networks
Stars: ✭ 63 (+162.5%)
Mutual labels:  agi
memories
Forgetful Bloom filters
Stars: ✭ 17 (-29.17%)
Mutual labels:  agi
Starpy
Mirror of Python twisted library for AMI and FastAGI: No pull requests here please. Use Gerrit: https://gerrit.asterisk.org
Stars: ✭ 77 (+220.83%)
Mutual labels:  agi
awesome-artificial-general-intelligence
Resources about Artificial General Intelligence
Stars: ✭ 211 (+779.17%)
Mutual labels:  agi
Awesome Artificial General Intelligence
Resources about Artificial General Intelligence
Stars: ✭ 179 (+645.83%)
Mutual labels:  agi
Astive
Media controller for Asterisk PBX (FastAGI Server)
Stars: ✭ 37 (+54.17%)
Mutual labels:  agi
Visual Interaction Networks tensorflow
Tensorflow Implementation of Visual Interaction Networks
Stars: ✭ 133 (+454.17%)
Mutual labels:  agi
Awesome Deep Rl
For deep RL and the future of AI.
Stars: ✭ 985 (+4004.17%)
Mutual labels:  agi
Opennars
OpenNARS for Research 3.0+
Stars: ✭ 264 (+1000%)
Mutual labels:  agi
Pathnet
Tensorflow Implementation of PathNet: Evolution Channels Gradient Descent in Super Neural Networks
Stars: ✭ 96 (+300%)
Mutual labels:  agi
caller-lookup
Reverse Caller Id using TrueCaller
Stars: ✭ 55 (+129.17%)
Mutual labels:  agi
Pagi
PHP AGI ( Asterisk Gateway Interface ) facade, with CDR ( Call Detail Record ), Call spool and schedule auto dial, Send and Receive Fax, Channel Variables, and Caller ID management
Stars: ✭ 161 (+570.83%)
Mutual labels:  agi
Voicer
AGI-server voice recognizer for #Asterisk
Stars: ✭ 73 (+204.17%)
Mutual labels:  agi
M
Stars: ✭ 313 (+1204.17%)
Mutual labels:  agi
Opencog
A framework for integrated Artificial Intelligence & Artificial General Intelligence (AGI)
Stars: ✭ 2,132 (+8783.33%)
Mutual labels:  agi
Helix theory
螺旋论(theory of helix)—— “熵减机理论(可用来构建AGI、复杂性系统等)”
Stars: ✭ 98 (+308.33%)
Mutual labels:  agi

Overview

Adaptive Logic And Neural Network (ALANN) is an alternative control theory and design for implementing a NARS style General Machine Intelligence (GMI). The overall goal of ALANN was to significantly simplify the control design whilst providing a platform for improved performance, distribution across nodes and arguably a better attention mechanism.

The ALANN System is built using a reactive streams model (Akka streams). The lobe architecture is as follows:

alt text

See below for further details.

Example belief graph from 'cat likes cod' sample:

The belief graph (.svg format) can be viewed in Google Chrome for detailed analysis. The .svg image file is avaible in the 'img' folder.

How To Build

  1. Clone the solution in Visual Studio (2017 Community Edition or later)
  2. Install paket in the solution directory https://fsprojects.github.io/Paket/installation.html#Installation-per-repository
  3. Run paket install
  4. Run paket update
  5. Build solution

Alternatively using DotNetCore

  1. Install .NET Core 2.2 from https://dotnet.microsoft.com/download
  2. git clone https://github.com/opennars/ALANN2018.git
  3. cd ALANN2018
  4. dotnet build GraphServer2018DotNetCore.sln

How To Run

  1. Run ALANNStreams in a console
  2. Run the ALANNUI in Windows (accept the Firewall access to port 5000)
  3. Enter Narsese statements into 'Input' windows and click 'Input' button

Example Narsese Files

Simple deduction https://github.com/opennars/ALANN2018/blob/master/Examples/deductive%20reasoning

Chains of deduction https://github.com/opennars/ALANN2018/blob/master/Examples/Deductive%20chain

Generalised reasoning in shape world https://github.com/opennars/ALANN2018/blob/master/Examples/Shape_world

Infamous "Cat-blue-sky" challenge https://github.com/opennars/ALANN2018/blob/master/Examples/cat-blue-sky.txt

The inference test cases are a good place to start to get an idea of how narsese can be used with the inference rules (here: https://github.com/opennars/ALANN2018/tree/master/ALANNStreams/Tests/Inference)

Supported Narsese grammar

event ::== [attention] sentence
sentence ::== belief | question | goal 
belief ::== statement '.' [truth]
goal ::== statement '!'  [desire] 
question ::== statement '?'
statement ::== '<' term copula term '>'
compound-term ::== '(' term operator term ')'
term ::== word | variable | set | compound-term | statement | '--'  '(' term ')'
set ::== '{' {term} '}' | '[' {term} ']'
operator ::== '&&' | '||' '&/' | ',' | '&|' | ';' | '&' | '|'| '*' | '-' | '~' | '/1' | '/2' | '\1' | '\2'
copula ::== '-->' | '<->'  | '{--' | '--]' | '{-]'  '==>' | '<=>' | '=+>' | '=/>' | '=->' | #=\>' | '=|>' | '<+>' | '</>' | '<|>'
variable ::== '$' identifier | '#' identifier | '?' identifier 
word ::== string-literal | integer | real
string-literal ::== leading-identifier {identifier}
leading-identifier ::== letter | '_' | '”' | '''
identifier ::== letter | digit | '_' | '”' | '''
integer ::== ['-' | '+'] digit-sequence
digit-sequence ::== digit {digit}
real ::== ['-' | '+'] digit-sequence '.' digit-sequence
truth ::== '{' floatTuple '}'
desire ::== '{' floatTuple '}'
attention ::== '[' floatTuple ']'
floatTuple ::== real real

Note: relational images are considered binary operators although in practice the following form is used:

(rel / _ term) or (rel / term _), similarly for intensional images.

Server Command grammar

The ALANN Server accepts a range of commands to support run time control and inspection of various elements. The ALANN GUI is a simple graphical layer utilising these server commands. Commands in brackets are abbreviated version of the commands. By default the server is listening on port 5000 and responds on port 5001. UDP is the current protocol.

#RESET (#R) Reset memory and system streams
#LOAD (#L) "fiename" loads an existing file from DATA directory within BIN directory
#SAVE (#S) "filename" saves memory to disk in DATA directory
#PAUSE (#P) pause the server
#CONTINUE (#C) continue the server after pausing
#NODE_COUNT (#NC) show number of current nodes in storage
#SHOW_NODE (#SN) show node specific information such as current attention level
#ENABLE_TRACE (#ET) "term" turns on node activation tracing for the node with the specified term - can be multiple traces
#DISABLE_TRACE (#DT) "term" turns off tracing for the specified node
#SHOW_SIMPLE_BELIEFS (#SSB) "term" - shows the 'simple' beliefs for the specified node
#SHOW_TEMPORAL_BELIEFS (#STB) "term" - show the temporal beliefs for the specified node
#SHOW_HYPOTHESIS_BELIEFS (#SHB) "term" - show the hypothesis beliefs for the specified node
#SHOW_GENERALISED_BELIEFS (#SGB) "term" - show the generalised beliefs for the specified node
#SAVE_GRAPH (#SGR) - save belief graph to graph.csv in application folder

Project Details

The system is developed in F# and uses Akka Streams as a framework, along with FParsec (combinatorial Parser).

The current implementation is not industrial strength but can form a useful toolset for building GMI's.

The implementation of the inference rules uses the beautiful Rule meta language developed by patham9 to create a flexible language based inference rules set. The Narjure code base (Clojure implementation of NARS) can be used as reference.

alt text alt text

ALANN is an event driven system that incorporates aspects of neural networks into the design. The logic is still fundamentally based on NAL with two constraints, namely, compound terms are restricted to a binary representation (excluding sets). Unlike in NARS, all ‘tasks’ in the system are considered events.

For further detail see: https://www.researchgate.net/publication/335444185_ALANN_An_event_driven_control_mechanism_for_a_non-axiomatic_reasoning_system_NARS

The most significant differences are related to the attention mechanism. In OpenNARS there are two key aspects to activation spreading; firstly, term links, which connects concepts (related to the depth of sub terms in the concept host term) and secondly, inference results which cause concept activation as a by-product of their derivation. In ALANN there are no term links and activation spreading is entirely due to event distribution and inference spreading. So activation spreading is totally controlled by inference.

The removal of intervals from the grammar is based on a working theory that a sufficiently rich context is sufficient to disambiguate temporal relations. Although this has to be coupled with an attention mechanism that can form primary temporal orders such as A =/> B. Concepts effectively act as leaky neurons and this forms the basis of the activation. Beliefs have a truth value, (f, c), which is interpreted as a synaptic strength via the Expection(tv) function. So concept attention * exp(tv) of a belief determines both the degree of interest that the system has in a concept plus the likelyhood of that belief being true (to a degree) at the current moment.

Given the potential combinatorial explosion from multiple inference rules for every event task pair, an attention buffer is used to cull both the input and derived events to a level that the system resource can manage. This is achieved by using a fixed size priority queue that discards items when at 'flow rate' capacity. In this way only events that the system is both interested in, at the present moment, plus those having a higher chance of being true (to a degree) receive attention by the system. Although, in practice, the node latency period, whereby nodes are inactive after firing, acts as a form of event sink, so excessive events are discarded. The attention buffer acts as an infrequent buffer and not the main source of event 'thinning'.

There are further considerations such as fluid concept meaning, whereby a concepts meaning is defined in terms of the current context of the system and not absolute. The ALANN approach to support fluid concepts takes a different approach to OpenNARS, in that, the meaning of a concept, at a moment in time, is determined by both the attention of a beliefs host concept, and the attention of the beliefs terms related concepts. The relevance of a belief to the current moment is therefore decided by a combination of source attention and destination attention. Only when combined and modulated by the beliefs 'expectation value (as a proxy for synaptic strength) does the fluid meaning become known. In practice this means that all inference possibilities (that are valid event beliefs pairs), from a concept, are generated. These effectively act as spikes, with strength proportional to the node ATTENTION modulated by the belief expectation. These 'spikes' are then distributed, to the related beliefs terms, where the spike attention is added to the current concept attention (which decays exponentially). If the sum of the target concept attention is greater than an ACTIVATION_THRESHOLD then the spike 'fires' the concept. The concept attention is then reset to the RESTING_POTENTIAL. So a key difference between ALANN and OpenNARS is that contextual relevance is determined by the target concept rather than the host concept.

The current implementation has full support for Non-Axiomatic Logic (NAL) Levels 1 through 7 with framework support for NAL 8 and 9 but not local inference support for the latter (Levels 8 and 9).

Have fun!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].