Skip to content

Commit ffda52a

Browse files
authored
Merge pull request #224600 from santiagxf/santiagxf/azureml-mlflow-folder
Adding instructions to get the model's folder name for MLflow
2 parents 06476bf + 4806576 commit ffda52a

File tree

3 files changed

+26
-2
lines changed

3 files changed

+26
-2
lines changed

articles/machine-learning/how-to-deploy-mlflow-models-online-endpoints.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -549,7 +549,19 @@ You will typically select this workflow when:
549549

550550
Use the following steps to deploy an MLflow model with a custom scoring script.
551551

552-
1. Create a scoring script:
552+
1. Identify the folder where your MLflow model is placed.
553+
554+
a. Go to [Azure Machine Learning portal](https://ml.azure.com).
555+
556+
b. Go to the section __Models__.
557+
558+
c. Select the model you are trying to deploy and click on the tab __Artifacts__.
559+
560+
d. Take note of the folder that is displayed. This folder was indicated when the model was registered.
561+
562+
:::image type="content" source="media/how-to-deploy-mlflow-models-online-endpoints/mlflow-model-folder-name.png" lightbox="media/how-to-deploy-mlflow-models-online-endpoints/mlflow-model-folder-name.png" alt-text="Screenshot showing the folder where the model artifacts are placed.":::
563+
564+
1. Create a scoring script. Notice how the folder name `model` you identified before has been included in the `init()` function.
553565
554566
__score.py__
555567

articles/machine-learning/how-to-mlflow-batch.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,19 @@ You will typically select this workflow when:
471471

472472
Use the following steps to deploy an MLflow model with a custom scoring script.
473473

474-
1. Create a scoring script:
474+
1. Identify the folder where your MLflow model is placed.
475+
476+
a. Go to [Azure Machine Learning portal](https://ml.azure.com).
477+
478+
b. Go to the section __Models__.
479+
480+
c. Select the model you are trying to deploy and click on the tab __Artifacts__.
481+
482+
d. Take note of the folder that is displayed. This folder was indicated when the model was registered.
483+
484+
:::image type="content" source="media/how-to-deploy-mlflow-models-online-endpoints/mlflow-model-folder-name.png" lightbox="media/how-to-deploy-mlflow-models-online-endpoints/mlflow-model-folder-name.png" alt-text="Screenshot showing the folder where the model artifacts are placed.":::
485+
486+
1. Create a scoring script. Notice how the folder name `model` you identified before has been included in the `init()` function.
475487

476488
__batch_driver.py__
477489

151 KB
Loading

0 commit comments

Comments
 (0)