You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Learn how to use native scoring with the [PREDICT T-SQL function](../t-sql/queries/predict-transact-sql.md) to generate prediction values for new data inputs in near-real-time. Native scoring requires that you have an already trained model.
18
+
Learn how to use native scoring with the [PREDICT T-SQL function](../../t-sql/queries/predict-transact-sql.md) to generate prediction values for new data inputs in near-real-time. Native scoring requires that you have an already trained model.
19
19
20
20
The `PREDICT` function uses the native C++ extension capabilities in SQL machine learning. This methodology offers the fastest possible processing speed of forecasting and prediction workloads and support models in ONNX format or models trained using the RevoScaleR/revoscalepy packages.
21
21
@@ -81,7 +81,7 @@ The following algorithms are supported in revoscalepy and RevoScaleR.
For more information, see [Native scoring using the PREDICT T-SQL function](../../machine-learning/sql-native-scoring.md).
29
-
::: moniker-end
25
+
Generates a predicted value or scores based on a stored model. For more information, see [Native scoring using the PREDICT T-SQL function](../../machine-learning/predictions/native-scoring-predict-transact-sql.md).
30
26
31
27
## Syntax
32
28
@@ -159,9 +155,7 @@ FROM PREDICT(MODEL = @model, DATA = dbo.mytable AS d) WITH(score float) AS p;
0 commit comments