|
ModelStorageMode Enumeration
|
Modes for storing models.
Namespace:
Accord.MachineLearning
Assembly:
Accord.MachineLearning (in Accord.MachineLearning.dll) Version: 3.8.0
Syntax public enum ModelStorageMode
Public Enumeration ModelStorageMode
Members
| Member name | Value | Description |
---|
| AllModels | 0 |
Stores a model on each iteration. This is the most
intensive method, but enables a quick restoration
of any point on the learning history.
|
| MinimumOnly | 1 |
Stores only the model which had shown the minimum
validation value in the training history. All other
models are discarded and only their validation and
training values will be registered.
|
| MaximumOnly | 2 |
Stores only the model which had shown the maximum
validation value in the training history. All other
models are discarded and only their validation and
training values will be registered.
|
See Also