Click or drag to resize
Accord.NET (logo)

ModelStorageMode Enumeration

Modes for storing models.

Namespace:  Accord.MachineLearning
Assembly:  Accord.MachineLearning (in Accord.MachineLearning.dll) Version: 3.8.0
Syntax
public enum ModelStorageMode
Members
  Member nameValueDescription
AllModels0 Stores a model on each iteration. This is the most intensive method, but enables a quick restoration of any point on the learning history.
MinimumOnly1 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.
MaximumOnly2 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