Predicts the value of the output corresponding to
the specified features.
Namespace:
Extreme.DataAnalysis.Models
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public T Predict(
Vector<T> features,
ModelInputFormat format = ModelInputFormat.Automatic
)
Public Function Predict (
features As Vector(Of T),
Optional format As ModelInputFormat = ModelInputFormat.Automatic
) As T
public:
T Predict(
Vector<T>^ features,
ModelInputFormat format = ModelInputFormat::Automatic
)
member Predict :
features : Vector<'T> *
?format : ModelInputFormat
(* Defaults:
let _format = defaultArg format ModelInputFormat.Automatic
*)
-> 'T
Parameters
- features
- Type: Extreme.MathematicsVectorT
A vector that contains
the input values for the regression. - format (Optional)
- Type: Extreme.DataAnalysis.ModelsModelInputFormat
A ModelInputFormat value
that specifies how the elements in features
relate to the variables in the model.
Return Value
Type:
TThe predicted value.
Reference