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
You can follow along this sample in a Jupyter Notebook. In the [azureml-examples](https://github.com/azure/azureml-examples) repository, open the notebook: [model.ipynb](https://github.com/Azure/azureml-examples/blob/main/sdk/python/assets/model/model.ipynb).
60
+
57
61
## Create a model in the model registry
58
62
59
63
[Model registration](concept-model-management-and-deployment.md) allows you to store and version your models in the Azure cloud, in your workspace. The model registry helps you organize and keep track of your trained models.
@@ -251,8 +255,176 @@ For a complete example, see the [model notebook](https://github.com/Azure/azurem
251
255
252
256
To create a model in Machine Learning, from the UI, open the **Models** page. Select **Register model**, and select where your model is located. Fill out the required fields, and then select **Register**.
253
257
254
-
:::image type="content" source="./media/how-to-manage-models/register-model-as-asset.png" alt-text="Screenshot of the UI to register a model." lightbox="./media/how-to-manage-models/register-model-as-asset.png":::
258
+
:::image type="content" source="./media/how-to-manage-models/register-model-local.png" alt-text="Screenshot of the UI to register a model." lightbox="./media/how-to-manage-models/register-model-local.png":::
259
+
260
+
---
261
+
262
+
## Use model as input in a job
263
+
264
+
# [Azure CLI](#tab/cli)
265
+
266
+
Create a job specification YAML file (`<file-name>.yml`). Specify in the `inputs` section of the job:
267
+
268
+
1. The `type`; whether the model is a `mlflow_model`,`custom_model` or `triton_model`.
269
+
1. The `path` of where your data is located; can be any of the paths outlined in the [Supported Paths](#supported-paths) section.
In your job you can write model to your cloud-based storage using *outputs*.
345
+
346
+
# [Azure CLI](#tab/cli)
347
+
348
+
Create a job specification YAML file (`<file-name>.yml`), with the `outputs` section populated with the type and path of where you would like to write your data to:
0 commit comments