|   | MulticlassLearningBaseTModelLearn Method (Single, Boolean, Double) | 
        
         
              Learns a model that can map the given inputs to the given outputs.
            
 
    Namespace: 
   Accord.MachineLearning
    Assembly:
   Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
 Syntax
Syntaxpublic virtual TModel Learn(
	float[][] x,
	bool[][] y,
	double[] weights = null
)
Public Overridable Function Learn ( 
	x As Single()(),
	y As Boolean()(),
	Optional weights As Double() = Nothing
) As TModel
Parameters
- x
- Type: SystemSingle
 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: 
TModelA model that has learned how to produce 
y given 
x.
Implements
ISupervisedLearningTModel, TInput, TOutputLearn(TInput, TOutput, Double) See Also
See Also