funrep / neuralnet

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

neuralnet

An artificial neural net in Haskell.

A basic implementation of a feedforward ANN with backpropagation.

Try it out

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

License

Licensed under BSD3.

About

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Haskell 100.0%