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 Vector<T> Predict(
Matrix<T> features,
ModelInputFormat format = ModelInputFormat.Automatic
)
Public Function Predict (
features As Matrix(Of T),
Optional format As ModelInputFormat = ModelInputFormat.Automatic
) As Vector(Of T)
public:
Vector<T>^ Predict(
Matrix<T>^ features,
ModelInputFormat format = ModelInputFormat::Automatic
)
member Predict :
features : Matrix<'T> *
?format : ModelInputFormat
(* Defaults:
let _format = defaultArg format ModelInputFormat.Automatic
*)
-> Vector<'T>
Parameters
- features
- Type: Extreme.MathematicsMatrixT
A matrix that contains
the features 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:
VectorTThe predicted value.
Reference