grenade/README.md

142 lines
5.2 KiB
Markdown
Raw Normal View History

2016-06-23 15:12:57 +03:00
Grenade
=======
2017-02-07 13:29:08 +03:00
[![Build Status](https://api.travis-ci.org/HuwCampbell/grenade.svg?branch=master)](https://travis-ci.org/HuwCampbell/grenade)
2016-06-23 15:12:57 +03:00
```
First shalt thou take out the Holy Pin, then shalt thou count to three, no more, no less.
Three shall be the number thou shalt count, and the number of the counting shall be three.
Four shalt thou not count, neither count thou two, excepting that thou then proceed to three.
Five is right out.
```
💣 Machine learning which might blow up in your face 💣
2017-01-17 11:47:39 +03:00
Grenade is a dependently typed, practical, and fast recurrent neural network library
for concise and precise specifications of complex networks in Haskell.
2016-06-23 15:12:57 +03:00
2016-12-13 02:06:40 +03:00
As an example, a network which can achieve ~1.5% error on MNIST can be
2016-12-09 14:28:04 +03:00
specified and initialised with random weights in a few lines of code with
2016-06-23 15:12:57 +03:00
```haskell
2017-02-03 14:47:28 +03:00
type MNIST
= Network
'[ Convolution 1 10 5 5 1 1, Pooling 2 2 2 2, Relu, Convolution 10 16 5 5 1 1, Pooling 2 2 2 2, FlattenLayer, Relu, FullyConnected 256 80, Logit, FullyConnected 80 10, Logit]
'[ 'D2 28 28, 'D3 24 24 10, 'D3 12 12 10, 'D3 12 12 10, 'D3 8 8 16, 'D3 4 4 16, 'D1 256, 'D1 256, 'D1 80, 'D1 80, 'D1 10, 'D1 10]
2016-12-13 02:06:40 +03:00
randomMnist :: MonadRandom m => m MNIST
2016-12-06 13:07:38 +03:00
randomMnist = randomNetwork
2016-06-23 15:12:57 +03:00
```
2017-01-19 10:55:13 +03:00
And that's it. Because the types are so rich, there's no specific term level code
required to construct this network; although it is of course possible and
easy to construct and deconstruct the networks and layers explicitly oneself.
If recurrent neural networks are more your style, you can try defining something
["unreasonably effective"](http://karpathy.github.io/2015/05/21/rnn-effectiveness/)
with
```haskell
2017-02-03 14:47:28 +03:00
type Shakespeare
= RecurrentNetwork
'[ R (LSTM 40 80), R (LSTM 80 40), F (FullyConnected 40 40), F Logit]
'[ 'D1 40, 'D1 80, 'D1 40, 'D1 40, 'D1 40 ]
2017-01-19 10:55:13 +03:00
```
2017-01-19 12:50:47 +03:00
Design
------
2016-06-23 15:12:57 +03:00
2017-01-19 12:50:47 +03:00
Networks in Grenade can be thought of as a heterogeneous lists of layers, where
their type includes not only the layers of the network, but also the shapes of
data that are passed between the layers.
2016-06-23 15:12:57 +03:00
2017-01-19 12:50:47 +03:00
The definition of a network is surprisingly simple:
2016-12-09 14:28:04 +03:00
```haskell
data Network :: [*] -> [Shape] -> * where
2017-02-03 14:47:28 +03:00
NNil :: SingI i
=> Network '[] '[i]
(:~>) :: (SingI i, SingI h, Layer x i h)
=> !x
-> !(Network xs (h ': hs))
-> Network (x ': xs) (i ': h ': hs)
2016-12-09 14:28:04 +03:00
```
2016-12-13 02:06:40 +03:00
The `Layer x i o` constraint ensures that the layer `x` can sensibly perform a
transformation between the input and output shapes `i` and `o`.
2017-01-19 12:50:47 +03:00
The lifted data kind `Shape` defines our 1, 2, and 3 dimension types, used to
declare what shape of data is passed between the layers.
In the MNIST example above, the input layer can be seen to be a two dimensional
(`D2`), image with 28 by 28 pixels. When the first *Convolution* layer runs, it
outputs a three dimensional (`D3`) 24x24x10 image. The last item in the list is
one dimensional (`D1`) with 10 values, representing the categories of the MNIST
2016-12-09 14:28:04 +03:00
data.
Usage
-----
To perform back propagation, one can call the eponymous function
```haskell
2017-01-19 15:08:01 +03:00
backPropagate :: forall shapes layers.
Network layers shapes -> S (Head shapes) -> S (Last shapes) -> Gradients layers
2016-12-09 14:28:04 +03:00
```
which takes a network, appropriate input and target data, and returns the
back propagated gradients for the network. The shapes of the gradients are
appropriate for each layer, and may be trivial for layers like `Rulu` which
have no learnable parameters.
The gradients however can always be applied, yielding a new (hopefully better)
layer with
```haskell
applyUpdate :: LearningParameters -> Network ls ss -> Gradients ls -> Network ls ss
```
2016-06-23 15:12:57 +03:00
2016-12-09 14:28:04 +03:00
Layers in Grenade are represented as Haskell classes, so creating one's own is
easy in downstream code. If the shapes of a network are not specified correctly
and a layer can not sensibly perform the operation between two shapes, then
it will result in a compile time error.
2016-06-29 13:34:53 +03:00
Build Instructions
------------------
2016-12-09 14:28:04 +03:00
Grenade currently only builds with the [mafia](https://github.com/ambiata/mafia)
script that is located in the repository. You will also need the `lapack` and
`blas` libraries and development tools. Once you have all that, Grenade can be
build using:
2016-06-29 13:34:53 +03:00
```
./mafia build
```
and the tests run using:
```
./mafia test
```
Grenade is currently known to build with ghc 7.10 and 8.0.
2016-06-29 13:34:53 +03:00
2016-06-23 15:12:57 +03:00
Thanks
------
2016-12-09 14:28:04 +03:00
Writing a library like this has been on my mind for a while now, but a big shout
out must go to [Justin Le](https://github.com/mstksg), whose
[dependently typed fully connected network](https://blog.jle.im/entry/practical-dependent-types-in-haskell-1.html)
inspired me to get cracking, gave many ideas for the type level tools I
2016-06-23 15:12:57 +03:00
needed, and was a great starting point for writing this library.
Performance
-----------
2016-12-13 02:06:40 +03:00
Grenade is backed by hmatrix, BLAS, and LAPACK, with critical functions optimised
in C. Using the im2col trick popularised by Caffe, it should be sufficient for
many problems.
2016-06-23 15:12:57 +03:00
2016-12-13 02:06:40 +03:00
Being purely functional, it should also be easy to run batches in parallel, which
would be appropriate for larger networks, my current examples however are single
threaded.
2016-06-23 15:12:57 +03:00
2016-12-13 02:06:40 +03:00
Training 15 generations over Kaggle's 41000 sample MNIST training set on a single
core took around 12 minutes, achieving 1.5% error rate on a 1000 sample holdout set.
2016-06-23 15:12:57 +03:00
Contributing
------------
Contributions are welcome.