Click or drag to resize
Accord.NET (logo)

NaiveBayesTDistribution, TInput Constructor (Int32, Int32, FuncInt32, Int32, TDistribution)

Constructs a new Naïve Bayes Classifier.

Namespace:  Accord.MachineLearning.Bayes
Assembly:  Accord.MachineLearning (in Accord.MachineLearning.dll) Version: 3.8.0
Syntax
public NaiveBayes(
	int classes,
	int inputs,
	Func<int, int, TDistribution> initial
)
Request Example View Source

Parameters

classes
Type: SystemInt32
The number of output classes.
inputs
Type: SystemInt32
The number of input variables.
initial
Type: SystemFuncInt32, Int32, TDistribution
An initialization function used to create the distribution functions for each class. Those will be available in the Distributions property.
See Also