Description Usage Arguments Value Author(s) See Also
Creates a neuron according to the structure established by the AMORE package standard.
1 2 | init.MLPneuron(id, type, activation.function, output.links, output.aims, input.links,
weights, bias, method, method.dep.variables)
|
id |
Numerical index of the neuron (so as to be refered in a network operation). |
type |
Either hidden or ouput, according to the layer the neuron belongs to. |
activation.function |
The name of the characteristic function of the neuron. It can be "pureline", "tansig", "sigmoid" or even "custom" in case that the user wants to configure its own activation function accordingly defining f0 and f1. |
output.links |
The id's of the neurons that accept the output value of this neuron as an input. |
output.aims |
The location of the output of the neuron in the input set of the addressed neuron. Gives answer to: Is this output the first, the second, the third, ..., input at the addressed neuron?. Similarly for an output neuron: Is this output the first, the second, the third, ..., element of the output vector? |
input.links |
The id's of the neurons whose outputs work as inputs for this neuron. Positive values represent that we take the outputs of other neurons as inputs. Negative values represent the coordinates of the input vector to be considered as inputs. |
weights |
The multiplying factors of the input values. |
bias |
The bias summed to the weighted sum of the inputs. |
method |
Prefered training method. Currently it can be:
|
method.dep.variables |
Variables used by the training methods:
|
init.MLPneuron returns a single neuron. Mainly used to create a neural network object.
Manuel Castejón Limas. manuel.castejon@gmail.com
Joaquin Ordieres Meré. j.ordieres@upm.es
Ana González Marcos. ana.gonzalez@unirioja.es
Alpha V. Pernía Espinoza. alpha.pernia@unirioja.es
Francisco Javier Martinez de Pisón. fjmartin@unirioja.es
Fernando Alba Elías. fernando.alba@unavarra.es
newff
, random.init.MLPnet
, random.init.MLPneuron
, select.activation.function
, init.MLPneuron
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.