mlpack  master
perceptron.hpp
Go to the documentation of this file.
1 
12 #ifndef MLPACK_METHODS_PERCEPTRON_PERCEPTRON_HPP
13 #define MLPACK_METHODS_PERCEPTRON_PERCEPTRON_HPP
14 
15 #include <mlpack/prereqs.hpp>
16 
20 
21 namespace mlpack {
22 namespace perceptron {
23 
33 template<typename LearnPolicy = SimpleWeightUpdate,
34  typename WeightInitializationPolicy = ZeroInitialization,
35  typename MatType = arma::mat>
37 {
38  public:
49  Perceptron(const size_t numClasses = 0,
50  const size_t dimensionality = 0,
51  const size_t maxIterations = 1000);
52 
66  Perceptron(const MatType& data,
67  const arma::Row<size_t>& labels,
68  const size_t numClasses,
69  const size_t maxIterations = 1000);
70 
81  Perceptron(const Perceptron& other,
82  const MatType& data,
83  const arma::Row<size_t>& labels,
84  const arma::rowvec& instanceWeights);
85 
101  void Train(const MatType& data,
102  const arma::Row<size_t>& labels,
103  const arma::rowvec& instanceWeights = arma::rowvec());
104 
113  void Classify(const MatType& test, arma::Row<size_t>& predictedLabels);
114 
118  template<typename Archive>
119  void Serialize(Archive& ar, const unsigned int /* version */);
120 
122  size_t MaxIterations() const { return maxIterations; }
124  size_t& MaxIterations() { return maxIterations; }
125 
127  size_t NumClasses() const { return weights.n_cols; }
128 
130  const arma::mat& Weights() const { return weights; }
132  arma::mat& Weights() { return weights; }
133 
135  const arma::vec& Biases() const { return biases; }
137  arma::vec& Biases() { return biases; }
138 
139 private:
142 
149  arma::mat weights;
150 
152  arma::vec biases;
153 };
154 
155 } // namespace perceptron
156 } // namespace mlpack
157 
158 #include "perceptron_impl.hpp"
159 
160 #endif
arma::mat weights
Stores the weights for each of the input class labels.
Definition: perceptron.hpp:149
arma::vec biases
The biases for each class.
Definition: perceptron.hpp:152
Linear algebra utility functions, generally performed on matrices or vectors.
Definition: binarize.hpp:18
The core includes that mlpack expects; standard C++ includes and Armadillo.
const arma::vec & Biases() const
Get the biases.
Definition: perceptron.hpp:135
size_t NumClasses() const
Get the number of classes this perceptron has been trained for.
Definition: perceptron.hpp:127
Perceptron(const size_t numClasses=0, const size_t dimensionality=0, const size_t maxIterations=1000)
Constructor: create the perceptron with the given number of classes and initialize the weight matrix...
arma::vec & Biases()
Modify the biases. You had better know what you are doing!
Definition: perceptron.hpp:137
const arma::mat & Weights() const
Get the weight matrix.
Definition: perceptron.hpp:130
size_t maxIterations
The maximum number of iterations during training.
Definition: perceptron.hpp:141
size_t & MaxIterations()
Modify the maximum number of iterations.
Definition: perceptron.hpp:124
size_t MaxIterations() const
Get the maximum number of iterations.
Definition: perceptron.hpp:122
void Serialize(Archive &ar, const unsigned int)
Serialize the perceptron.
void Train(const MatType &data, const arma::Row< size_t > &labels, const arma::rowvec &instanceWeights=arma::rowvec())
Train the perceptron on the given data for up to the maximum number of iterations (specified in the c...
void Classify(const MatType &test, arma::Row< size_t > &predictedLabels)
Classification function.
arma::mat & Weights()
Modify the weight matrix. You had better know what you are doing!
Definition: perceptron.hpp:132
This class implements a simple perceptron (i.e., a single layer neural network).
Definition: perceptron.hpp:36