METRICS(X)
: This function displays performance metrics for
trained ML models. For classification tasks, these metrics are
accuracy, logloss, and AUC. For regressions tasks, these metrics are
MAE, MSE, RMSE, and R-Squared.
This is a table-valued function (TVF). It should be used in a FROM
clause. The argument for this function should be either the name of the
trained model or a string literal. String literal arguments support wildcards,
enabling this function to display the metrics for multiple ML models in one table.
X
is a string literal, then wildcards may be used.
In that case, the metrics for all matching model names
are displayed in the table.