performanceMetrics property
Measurements of how well the MLModel performed, using
observations referenced by the DataSource. One of the following
metrics is returned, based on the type of the MLModel:
-
BinaryAUC: A binary
MLModeluses the Area Under the Curve (AUC) technique to measure performance. -
RegressionRMSE: A regression
MLModeluses the Root Mean Square Error (RMSE) technique to measure performance. RMSE measures the difference between predicted and actual values for a single variable. -
MulticlassAvgFScore: A multiclass
MLModeluses the F1 score technique to measure performance.
Implementation
final PerformanceMetrics? performanceMetrics;