title | description | services | ms.service | ms.subservice | ms.topic | ms.custom | author | ms.author | ms.date |
---|---|---|---|---|---|---|---|---|---|
Migrate to Azure Machine Learning - Consume pipeline endpoints |
Learn how to integrate pipeline endpoints with client applications in Azure Machine Learning as part of migrating from Machine Learning Studio (Classic). |
machine-learning |
machine-learning |
studio-classic |
how-to |
kr2b-contr-experiment |
xiaoharper |
zhanxia |
05/31/2022 |
[!INCLUDE ML Studio (classic) retirement]
In this article, you learn how to integrate client applications with Azure Machine Learning endpoints. For more information on writing application code, see Consume an Azure Machine Learning endpoint.
This article is part of the ML Studio (classic) to Azure Machine Learning migration series. For more information on migrating to Azure Machine Learning, see the migration overview article.
- An Azure account with an active subscription. Create an account for free.
- An Azure Machine Learning workspace. Create an Azure Machine Learning workspace.
- An Azure Machine Learning real-time endpoint or pipeline endpoint.
If you deployed your model as a real-time endpoint, you can find its REST endpoint, and pre-generated consumption code in C#, Python, and R:
- Go to Azure Machine Learning studio (ml.azure.com).
- Go the Endpoints tab.
- Select your real-time endpoint.
- Select Consume.
Note
You can also find the Swagger specification for your endpoint in the Details tab. Use the Swagger definition to understand your endpoint schema. For more information on Swagger definition, see Swagger official documentation.
There are two ways to consume a pipeline endpoint:
- REST API calls
- Integration with Azure Data Factory
Call the REST endpoint from your client application. You can use the Swagger specification for your endpoint to understand its schema:
- Go to Azure Machine Learning studio (ml.azure.com).
- Go the Endpoints tab.
- Select Pipeline endpoints.
- Select your pipeline endpoint.
- In the Pipeline endpoint overview pane, select the link under REST endpoint documentation.
You can call your Azure Machine Learning pipeline as a step in an Azure Data Factory pipeline. For more information, see Execute Azure Machine Learning pipelines in Azure Data Factory.
In this article, you learned how to find schema and sample code for your pipeline endpoints. For more information on consuming endpoints from the client application, see Consume an Azure Machine Learning endpoint.
See the rest of the articles in the Azure Machine Learning migration series: