|
NaiveBayesEstimate Method
|
Note: This API is now obsolete.
Obsolete.
Namespace:
Accord.MachineLearning.Bayes
Assembly:
Accord.MachineLearning (in Accord.MachineLearning.dll) Version: 3.8.0
Syntax [ObsoleteAttribute("Please use NaiveBayesLearning instead.")]
public double Estimate(
int[][] inputs,
int[] outputs,
bool empirical = true,
double regularization = 1E-05
)
<ObsoleteAttribute("Please use NaiveBayesLearning instead.")>
Public Function Estimate (
inputs As Integer()(),
outputs As Integer(),
Optional empirical As Boolean = true,
Optional regularization As Double = 1E-05
) As Double
Request Example
View SourceParameters
- inputs
- Type: SystemInt32
- outputs
- Type: SystemInt32
- empirical (Optional)
- Type: SystemBoolean
- regularization (Optional)
- Type: SystemDouble
Return Value
Type:
DoubleSee Also