|
SequentialMinimalOptimizationLearn Method (Double, Boolean, Double)
|
Learns a model that can map the given inputs to the given outputs.
Namespace:
Accord.MachineLearning.VectorMachines.Learning
Assembly:
Accord.MachineLearning (in Accord.MachineLearning.dll) Version: 3.8.0
Syntax public SupportVectorMachine Learn(
double[][] x,
bool[] y,
double[] weights = null
)
Public Function Learn (
x As Double()(),
y As Boolean(),
Optional weights As Double() = Nothing
) As SupportVectorMachine
Request Example
View SourceParameters
- x
- Type: SystemDouble
The model inputs. - y
- Type: SystemBoolean
The desired outputs associated with each x. - weights (Optional)
- Type: SystemDouble
The weight of importance for each input-output pair (if supported by the learning algorithm).
Return Value
Type:
SupportVectorMachine
A model that has learned how to produce
y given
x.
See Also