Classification Model<T>.Predict Probabilities Method
Definition
Namespace: Numerics.NET.DataAnalysis.Models
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Overload List
Predict | Predicts the value of the output corresponding to the specified input. |
Predict | Predicts the value of the output corresponding to the specified features. |
Predict | Predicts the value of the output corresponding to the specified input. |
PredictProbabilities(IDataFrame, ModelInputFormat)
Predicts the value of the output corresponding to
the specified input.
public Matrix<double> PredictProbabilities(
IDataFrame features,
ModelInputFormat format = ModelInputFormat.Automatic
)
Parameters
- features IDataFrame
- A data frame that contains the input features for the regression.
- format ModelInputFormat (Optional)
- A ModelInputFormat value that specifies how the elements in features relate to the variables in the model.
Return Value
Matrix<Double>The predicted value.
PredictProbabilities(Matrix<T>, ModelInputFormat)
Predicts the value of the output corresponding to
the specified features.
public Matrix<double> PredictProbabilities(
Matrix<T> features,
ModelInputFormat format = ModelInputFormat.Automatic
)
Parameters
- features Matrix<T>
- A matrix that contains the input values for the regression.
- format ModelInputFormat (Optional)
- A ModelInputFormat value that specifies how the elements in features relate to the variables in the model.
Return Value
Matrix<Double>The predicted value.
PredictProbabilities(Vector<T>, ModelInputFormat)
Predicts the value of the output corresponding to
the specified input.
public Vector<double> PredictProbabilities(
Vector<T> features,
ModelInputFormat format = ModelInputFormat.Automatic
)
Parameters
- features Vector<T>
- A vector that contains the input values for the regression.
- format ModelInputFormat (Optional)
- A ModelInputFormat value that specifies how the elements in features relate to the variables in the model.
Return Value
Vector<Double>The predicted value.