Skip to content

Latest commit

 

History

History
17 lines (9 loc) · 485 Bytes

README.md

File metadata and controls

17 lines (9 loc) · 485 Bytes

Let's AI like it's 1989

Delta rule neural network.

Implements a simple back-propogation neural network.

(setf network (newdeltanetwork '(2 2)) will create a two-layer network with 2 input and 2 output neurons.

Training against this network inside a loop is simple:

(setf network (deltalearn network '(((1 0) (0 1)) ((0 1) (1 0)))))

The training list consists of inputs to the network and expected outputs.

See the test folder for examples.

Hopfield neural network.