An artificial neural net in Haskell.
A basic implementation of a feedforward ANN with backpropagation.
The Numeric.ANN.XOR
module trains a network to learn the XOR operator.
$ stack ghci
...
> import Numeric.ANN.XOR
> net <- xorNet
> runNet [1,0] net
0.969682524723555
Licensed under BSD3.