There is vast literature on neural networks and their uses, as well as strategies for choosing initial points effectively, keeping the algorithm from converging in local minima, choosing the best model structure, choosing the best optimizers, and so forth. mlpack implements many of these building blocks, making it very easy to create different neural networks in a modular way.
mlpack currently implements two easy-to-use forms of neural networks: Feed-Forward Networks (this includes convolutional neural networks) and Recurrent Neural Networks.
This tutorial is split into the following sections:
There are two main neural network classes that are meant to be used as container for neural network layers that mlpack implements; each class is suited to a different setting:
FFN:
the Feed Forward Network model provides a means to plug layers together in a feed-forward fully connected manner. This is the 'standard' type of deep learning model, and includes convolutional neural networks (CNNs).RNN:
the Recurrent Neural Network model provides a means to consider successive calls to forward as different time-steps in a sequence. This is often used for time sequence modeling tasks, such as predicting the next character in a sequence.Below is some basic guidance on what should be used. Note that the question of "which algorithm should be used" is a very difficult question to answer, so the guidance below is just that—guidance—and may not be right for a particular problem.
In order to facilitate consistent implementations, the FFN
and RNN
classes have a number of methods in common:
Train()
: trains the initialized model on the given input data. Optionally an optimizer object can be passed to control the optimization process.Predict()
: predicts the responses to a given set of predictors. Note the responses will reflect the output of the specified output layer.Add()
: this method can be used to add a layer to the model.FNN
and RNN
class implement two methods: Evaluate()
and Gradient()
. This enables the optimization given some learner and some performance measure.Similar to the existing layer infrastructure, the FFN
and RNN
classes are very extensible, having the following template arguments; which can be modified to change the behavior of the network:
OutputLayerType:
this type defines the output layer used to evaluate the network; by default, NegativeLogLikelihood
is used.InitializationRuleType:
this type defines the method by which initial parameters are set; by default, RandomInitialization
is used.Internally, the FFN
and RNN
class keeps an instantiated OutputLayerType
class (which can be given in the constructor). This is useful for using different loss functions like the Negative-Log-Likelihood function or the VRClassReward
function, which takes an optional score parameter. Therefore, you can write a non-static OutputLayerType class and use it seamlessly in combination with the FNN
and RNN
class. The same applies to the InitializationRuleType
template parameter.
By choosing different components for each of these template classes in conjunction with the Add()
method, a very arbitrary network object can be constructed.
Below are several examples of how the FNN
and RNN
classes might be used. The first examples focus on the FNN
class, and the last shows how the RNN
class can be used.
The simplest way to use the FNN<> class is to pass in a dataset with the corresponding labels, and receive the classification in return. Note that the dataset must be column-major – that is, one column corresponds to one point. See the matrices guide for more information.
The code below builds a simple feed-forward network with the default options, then queries for the assignments for every point in the queries
matrix.
Now, the matrix prediction holds the classification of each point in the dataset. Subsequently, we find the classification error by comparing it with testLabels.
In the next example, we create simple noisy sine sequences, which are trained later on, using the RNN class in the RNNModel()
method.
For further examples on the usage of the ann classes, see mlpack models.
In order to facilitate consistent implementations, we have defined a LayerType API that describes all the methods that a layer
may implement. mlpack offers a few variations of this API, each designed to cover some of the model characteristics mentioned in the previous section. Any layer
requires the implementation of a Forward()
method. The interface looks like:
The method should calculate the output of the layer given the input matrix and store the result in the given output matrix. Next, any layer
must implement the Backward() method, which uses certain computations obtained during the forward pass and should calculate the function f(x) by propagating x backward through f:
Finally, if the layer is differentiable, the layer must also implement a Gradient() method:
The Gradient function should calculate the gradient with respect to the input activations input
and calculated errors error
and place the results into the gradient matrix object gradient
that is passed as an argument.
layer
without explicitly passing the type.In addition, each layer must implement the Parameters(), InputParameter(), OutputParameter(), Delta() methods, differentiable layer should also provide access to the gradient by implementing the Gradient(), Parameters() member function. Note each function is a single line that looks like:
Below is an example that shows each function with some additional boilerplate code.
Note that layer sometimes have different properties. These properties are known at compile-time through the mlpack::ann::LayerTraits class, and some properties may imply the existence (or non-existence) of certain functions. Refer to the LayerTraits layer_traits.hpp for more documentation on that.
The two template parameters below must be template parameters to the layer, in the order given below. More template parameters are fine, but they must come after the first two.
InputDataType:
this defines the internally used input type for example to store the parameter matrix. Note, a layer could be built on a dense matrix or a sparse matrix. All mlpack trees should be able to support any Armadillo- compatible matrix type. When the layer is written it should be assumed that MatType has the same functionality as arma::mat. Note thatOutputDataType:
this defines the internally used input type for example to store the parameter matrix. Note, a layer could be built on a dense matrix or a sparse matrix. All mlpack trees should be able to support any Armadillo- compatible matrix type. When the layer is written it should be assumed that MatType has the same functionality as arma::mat.The constructor for ExampleLayer
will build the layer given the input and output size. Note that, if the input or output size information isn't used internally it's not necessary to provide a specific constructor. Also, one could add additional or other information that are necessary for the layer construction. One example could be:
When this constructor is finished, the entire layer will be built and is ready to be used. Next, as pointed out above, each layer has to follow the LayerType API, so we must implement some additional functions.
The three functions Forward()
, Backward()
and Gradient()
(which is needed for a differentiable layer) contain the main logic of the layer. The following functions are just to access and manipulate the different layer parameters.
Since some of this methods return internal class members we have to define them.
Note some members are just here so ExampleLayer
compiles without warning. For instance, inputSize
is not required to be a member of every type of layer.
There is one last method that is especially interesting for a layer that shares parameter. Since the layer weights are set once the complete model is defined, it's not possible to split the weights during the construction time. To solve this issue, a layer can implement the Reset()
method which is called once the layer parameter is set.
Once the base container is selected (FNN
or RNN
), the Add
method can be used to add layers to the model. The code below adds two linear layers to the model—the first takes 512 units as input and gives 256 output units, and the second takes 256 units as input and gives 128 output units.
The model is trained on Armadillo matrices. For training a model, you will typically use the Train()
function:
You can use mlpack's Load()
function to load a dataset like this:
The type does not necessarily need to be a CSV; it can be any supported storage format, assuming that it is a coordinate-format file in the format specified above. For more information on mlpack file formats, see the documentation for mlpack::data::Load().
Also, it is possible to retrain a model with new parameters or with a new reference set. This is functionally equivalent to creating a new model.
Using cereal
(for more information about the internals see the Cereal website), mlpack is able to load and save machine learning models with ease. To save a trained neural network to disk. The example below builds a model on the thyroid
dataset and then saves the model to the file model.xml
for later use.
After this, the file model.xml will be available in the current working directory.
Now, we can look at the output model file, model.xml:
As you can see, the <parameter>
section of model.xml
contains the trained network weights. We can see that this section also contains the network input size, which is 66 rows and 1 column. Note that in this example, we used three different layers, as can be seen by looking at the <network>
section. Each node has a unique id that is used to reconstruct the model when loading.
The models can also be saved as .bin or
.txt; the
.xml format provides a human-inspectable format (though the models tend to be quite complex and may be difficult to read). These models can then be re-used to be used for classification or other tasks.
So, instead of saving or training a network, mlpack can also load a pre-trained model. For instance, the example below will load the model from model.xml
and then generate the class predictions for the thyroid
test dataset.
This enables the possibility to distribute a model without having to train it first or simply to save a model for later use. Note that loading will also work on different machines.
To access the weights from the neural network layers, you can call the following function on any initialized network:
which will return the complete model parameters as an armadillo matrix object; however often it is useful to not only have the parameters for the complete network, but the parameters of a specific layer. Another method, Model()
, makes this easily possible:
In the example above, we get the weights of the second layer.
For further documentation on the ann classes, consult the complete API documentation.