|
NaiveBayesLearningBaseTModel, TDistribution, TInput, TOptionsLearn Method (TInput, Double, Double)
|
Learns a model that can map the given inputs to the given outputs.
Namespace:
Accord.MachineLearning.Bayes
Assembly:
Accord.MachineLearning (in Accord.MachineLearning.dll) Version: 3.8.0
Syntax public virtual TModel Learn(
TInput[][] x,
double[][] y,
double[] weight = null
)
Public Overridable Function Learn (
x As TInput()(),
y As Double()(),
Optional weight As Double() = Nothing
) As TModel
Request Example
View SourceParameters
- x
- Type: TInput
The model inputs. - y
- Type: SystemDouble
The desired outputs associated with each x. - weight (Optional)
- Type: SystemDouble
The weight of importance for each input-output pair.
Return Value
Type:
TModel
A model that has learned how to produce
y given
x.
Implements
ISupervisedLearningTModel, TInput, TOutputLearn(TInput, TOutput, Double)See Also