Predicts the value of the dependent variable based on
the specified values of the features.
Namespace:
Extreme.DataAnalysis.Models
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
protected virtual T PredictCore(
Vector<T> features,
bool modelFeaturesOnly
)
Protected Overridable Function PredictCore (
features As Vector(Of T),
modelFeaturesOnly As Boolean
) As T
protected:
virtual T PredictCore(
Vector<T>^ features,
bool modelFeaturesOnly
)
abstract PredictCore :
features : Vector<'T> *
modelFeaturesOnly : bool -> 'T
override PredictCore :
features : Vector<'T> *
modelFeaturesOnly : bool -> 'T
Parameters
- features
- Type: Extreme.MathematicsVectorT
A vector containing
the values for the independent variables. - modelFeaturesOnly
- Type: SystemBoolean
Specifies whether
features includes only
features that appear in the fitted model.
Return Value
Type:
TThe value of the dependent variable predicted by the regression.
Reference