|
SelectionStrategy Enumeration
|
Gets the selection strategy to be used in SMO.
Namespace:
Accord.MachineLearning.VectorMachines.Learning
Assembly:
Accord.MachineLearning (in Accord.MachineLearning.dll) Version: 3.8.0
Syntax public enum SelectionStrategy
Public Enumeration SelectionStrategy
Members
| Member name | Value | Description |
---|
| Sequential | 0 |
Uses the sequential selection strategy as
suggested by Keerthi et al's algorithm 1.
|
| WorstPair | 1 |
Always select the worst violation pair
to be optimized first, as suggested in
Keerthi et al's algorithm 2.
|
| SecondOrder | 2 |
Use a second order selection algorithm, using
the same algorithm as LibSVM's implementation.
|
See Also