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
The model must be trained in advance using one of the supported **rx** algorithms listed below using the RevoScaleR or revoscalepy package.
66
+
The model must be trained in advance using one of the supported **rx** algorithms listed below using the [RevoScaleR](../r/ref-r-revoscaler.md) or [revoscalepy](../python/ref-py-revoscalepy.md) package.
67
67
68
68
Serialize the model using [rxSerialize](https://docs.microsoft.com/machine-learning-server/r-reference/revoscaler/rxserializemodel) for R, and [rx_serialize_model](https://docs.microsoft.com/machine-learning-server/python-reference/revoscalepy/rx-serialize-model) for Python. These serialization functions have been optimized to support fast scoring.
69
69
@@ -144,7 +144,7 @@ FROM PREDICT(MODEL = @model, DATA = predict_input, RUNTIME=ONNX) WITH (variable1
144
144
145
145
In this example, you create a model, and then call the real-time prediction function from T-SQL.
146
146
147
-
### Step 1. Prepare and save the model
147
+
####Step 1. Prepare and save the model
148
148
149
149
Run the following code to create the sample database and required tables.
150
150
@@ -213,7 +213,7 @@ SELECT *, datalength(native_model_object)/1024. as model_size_kb
213
213
FROM ml_models;
214
214
```
215
215
216
-
### Step 2. Run PREDICT on the model
216
+
####Step 2. Run PREDICT on the model
217
217
218
218
The following simple PREDICT statement gets a classification from the decision tree model using the **native scoring** function. It predicts the iris species based on attributes you provide, petal length and width.
0 commit comments