Method | Description | |
---|---|---|
IsValidResume ( TrainingContinuation state ) : bool |
Determine if the specified continuation object is valid to resume with.
|
|
Pause ( ) : TrainingContinuation |
Pause the training.
|
|
ResilientPropagation ( IContainsFlat network, IMLDataSet training ) : System |
Construct an RPROP trainer, allows an OpenCL device to be specified. Use the defaults for all training parameters. Usually this is the constructor to use as the resilient training algorithm is designed for the default parameters to be acceptable for nearly all problems.
|
|
ResilientPropagation ( IContainsFlat network, IMLDataSet training, double initialUpdate, double maxStep ) : System |
Construct a resilient training object, allow the training parameters to be specified. Usually the default parameters are acceptable for the resilient training algorithm. Therefore you should usually use the other constructor, that makes use of the default values.
|
|
Resume ( TrainingContinuation state ) : void |
Resume training.
|
public IsValidResume ( TrainingContinuation state ) : bool | ||
state | TrainingContinuation | The continuation object to check. |
return | bool |
public final Pause ( ) : TrainingContinuation | ||
return | TrainingContinuation |
public ResilientPropagation ( IContainsFlat network, IMLDataSet training ) : System | ||
network | IContainsFlat | The network to train. |
training | IMLDataSet | The training data to use. |
return | System |
public ResilientPropagation ( IContainsFlat network, IMLDataSet training, double initialUpdate, double maxStep ) : System | ||
network | IContainsFlat | The network to train. |
training | IMLDataSet | The training set to use. |
initialUpdate | double | |
maxStep | double | The maximum that a delta can reach. |
return | System |
public final Resume ( TrainingContinuation state ) : void | ||
state | TrainingContinuation | The training state to return to. |
return | void |