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
Copy file name to clipboardExpand all lines: articles/machine-learning/how-to-batch-scoring-script.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,7 +54,7 @@ When you create a new deployment, you receive prompts for a scoring script and d
54
54
55
55
:::image type="content" source="./media/how-to-batch-scoring-script/configure-scoring-script.png" alt-text="Screenshot of the step where you can configure the scoring script in a new deployment.":::
56
56
57
-
For MLflow models, scoring scripts are automatically generated but you can indicate one by checking this option:
57
+
For MLflow models, scoring scripts are automatically generated but you can indicate one by selecting this option:
58
58
59
59
:::image type="content" source="./media/how-to-batch-scoring-script/configure-scoring-script-mlflow.png" alt-text="Screenshot of the step where you can configure the scoring script in a new deployment when the model has MLflow format.":::
60
60
@@ -64,7 +64,7 @@ The scoring script must contain two methods:
64
64
65
65
#### The `init` method
66
66
67
-
Use the `init()` method for any costly or common preparation. For example, use it to load the model into memory. The start of the entire batch job calls this function one time. The files of your model are available in a path determined by the environment variable `AZUREML_MODEL_DIR`. Depending on how your model was registered, its files might be contained in a folder. In the next example, the model has several files in a folder named `model`. For more information, visit [how you can find out what's the folder that your model uses](#using-models-that-are-folders).
67
+
Use the `init()` method for any costly or common preparation. For example, use it to load the model into memory. The start of the entire batch job calls this function one time. The files of your model are available in a path determined by the environment variable `AZUREML_MODEL_DIR`. Depending on how your model was registered, its files might be contained in a folder. In the next example, the model has several files in a folder named `model`. For more information, visit [how you can determine the folder that your model uses](#using-models-that-are-folders).
Visit [Create a batch deployment](how-to-use-batch-endpoint.md#create-a-batch-deployment) for more information about how to indicate the environment for your model.
129
+
Visit [Create a batch deployment](how-to-use-batch-model-deployments.md#create-a-batch-deployment) for more information about how to indicate the environment for your model.
0 commit comments