Skip to content

Commit 5384a08

Browse files
committed
Small edits . . .
1 parent c4e8f9e commit 5384a08

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/machine-learning/how-to-batch-scoring-script.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ When you create a new deployment, you receive prompts for a scoring script and d
5454

5555
:::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.":::
5656

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:
5858

5959
:::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.":::
6060

@@ -64,7 +64,7 @@ The scoring script must contain two methods:
6464

6565
#### The `init` method
6666

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).
6868

6969
```python
7070
def init():
@@ -126,7 +126,7 @@ __mnist/environment/conda.yaml__
126126

127127
:::code language="yaml" source="~/azureml-examples-main/cli/endpoints/batch/deploy-models/mnist-classifier/deployment-torch/environment/conda.yaml":::
128128

129-
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.
130130

131131
## Writing predictions in a different way
132132

@@ -219,6 +219,6 @@ def init():
219219

220220
## Next steps
221221

222-
* [Troubleshooting batch endpoints](how-to-troubleshoot-batch-endpoints.md).
223-
* [Use MLflow models in batch deployments](how-to-mlflow-batch.md).
224-
* [Image processing with batch deployments](how-to-image-processing-batch.md).
222+
* [Troubleshooting batch endpoints](how-to-troubleshoot-batch-endpoints.md)
223+
* [Use MLflow models in batch deployments](how-to-mlflow-batch.md)
224+
* [Image processing with batch deployments](how-to-image-processing-batch.md)

0 commit comments

Comments
 (0)