Class Probability

Namespace
NOpenNLP.Tools.Ml.Naivebayes
Assembly
NOpenNLP.Tools.dll
public abstract class Probability
Inheritance
Probability
Derived
Inherited Members

Properties

Log

Gets the log probability.

public abstract double Log { get; }

Property Value

double

Remarks

NOpenNLP: This was getLog() in Java. It is declared here, rather than only on Probability<T>, so that the methods taking a Probability can read it the way Java's raw-typed parameters do.

Value

Gets the probability.

public abstract double Value { get; }

Property Value

double

Remarks

NOpenNLP: This was get() in Java.