Метод | Описание | |
---|---|---|
PerceptronLearning ( ActivationNetwork network ) : System |
Initializes a new instance of the PerceptronLearning class.
|
|
Run ( double input, double output ) : double |
Runs learning iteration. Runs one learning iteration and updates neuron's weights in the case if neuron's output is not equal to the desired output. |
|
RunEpoch ( double input, double output ) : double |
Runs learning epoch. The method runs one learning epoch, by calling Run method for each vector provided in the input array. |
public PerceptronLearning ( ActivationNetwork network ) : System | ||
network | ActivationNetwork | Network to teach. |
Результат | System |
public Run ( double input, double output ) : double | ||
input | double | Input vector. |
output | double | Desired output vector. |
Результат | double |
public RunEpoch ( double input, double output ) : double | ||
input | double | Array of input vectors. |
output | double | Array of output vectors. |
Результат | double |