Predicts the probabilities of each class based on
the specified values of the features.
Namespace:
Extreme.DataAnalysis.Models
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
protected abstract Vector<double> PredictProbabilitiesCore(
Vector<T> features,
Vector<double> probabilities,
bool modelFeaturesOnly
)
Protected MustOverride Function PredictProbabilitiesCore (
features As Vector(Of T),
probabilities As Vector(Of Double),
modelFeaturesOnly As Boolean
) As Vector(Of Double)
protected:
virtual Vector<double>^ PredictProbabilitiesCore(
Vector<T>^ features,
Vector<double>^ probabilities,
bool modelFeaturesOnly
) abstract
abstract PredictProbabilitiesCore :
features : Vector<'T> *
probabilities : Vector<float> *
modelFeaturesOnly : bool -> Vector<float>
Parameters
- features
- Type: Extreme.MathematicsVectorT
A vector containing
the values for the independent variables. - probabilities
- Type: Extreme.MathematicsVectorDouble
The vector that is to hold the result.
May be . - modelFeaturesOnly
- Type: SystemBoolean
Specifies whether
features includes only
features that appear in the fitted model.
Return Value
Type:
VectorDoubleThe probabilities that
the observation in
features
belongs to each class.
Reference