Description Slots References See Also
The mlp_net class represents the Multilayer Perception Network
employing the so-called compressed representation, which was inspired
by the Compressed Column Storage familiar from sparse matrix algebra.
Although the representation and algorithms working with it are somewhat
complicated, the user is provided with a simple and intuitive interface
that completely hides the internal workings of the package, which in its
large part is written in C++.
m_namecharacter string, network name
m_layersinteger vector, stores the numbers of neurons in layers
m_n_pointersinteger vector, stores the so-called 'pointers' to neurons
m_n_previnteger vector, stores the number of connected neurons in the previous layer
m_n_nextinteger vector, stores the number of connected neurons in the next layer
m_w_pointersinteger vector, stores the so-called 'pointers' to weights
m_w_valuesnumeric vector, values of connection weights and biases
m_w_flagslogical vector, states (active/inactive) of weights and biases
m_w_oninteger value, the number of active weights
m_afinteger vector, activation functions' indices
m_af_pnumeric vector, activation functions' slope parameters
G. Klima. A new approach towards implementing artificial neural networks. Technical Report, http://fcnn.sourceforge.net/, 2013.
mlp_net for creating objects of this class.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.