| NaiveBayesClassifierGetProbabilities Method |
Returns the predicted classification probabilities for each target
class.
Namespace: Imsl.DataMiningAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntaxpublic double[][] GetProbabilities()
Public Function GetProbabilities As Double()()
public:
array<array<double>^>^ GetProbabilities()
member GetProbabilities : unit -> float[][]
Return Value
Type:
Double
A
double matrix,
prob, of size
nPatterns by
nClasses containing the predicted classification
probabilities for each target class, where
nPatterns is the
number of patterns trained.
prob[i][j] is the estimated
probability that the
i-th pattern belongs to the
j-th
target class.
See Also