Method | Description | |
---|---|---|
CalcErrorWithMultipleSigma ( double x, double der1, double der2, bool der ) : double |
Calculate the error with multiple sigmas.
|
|
CalcErrorWithSingleSigma ( double sig ) : double |
Calculate the error using a common sigma.
|
|
CalculateError ( IMLDataSet training, bool deriv ) : double |
Calculate the error for the entire training set.
|
|
ComputeDeriv ( IMLData input, IMLData target ) : IMLData |
Compute the derivative for target data.
|
|
Iteration ( ) : void |
|
|
Pause ( ) : |
|
|
Resume ( |
|
|
TrainBasicPNN ( |
Train a BasicPNN.
|
public CalcErrorWithMultipleSigma ( double x, double der1, double der2, bool der ) : double | ||
x | double | The data. |
der1 | double | The first derivative. |
der2 | double | The 2nd derivatives. |
der | bool | Calculate the derivative. |
return | double |
public CalcErrorWithSingleSigma ( double sig ) : double | ||
sig | double | The sigma to use. |
return | double |
public CalculateError ( IMLDataSet training, bool deriv ) : double | ||
training | IMLDataSet | Training set to use. |
deriv | bool | Should we find the derivative. |
return | double |
public ComputeDeriv ( IMLData input, IMLData target ) : IMLData | ||
input | IMLData | The input. |
target | IMLData | The target data. |
return | IMLData |
public final Pause ( ) : |
||
return |
public Resume ( |
||
state | ||
return | void |
public TrainBasicPNN ( |
||
network | The network to train. | |
training | IMLDataSet | The training data. |
return | System |