Skip to content

Commit e6b3994

Browse files
authored
Fix applies sections and refresh articles (#36036)
1 parent 92926cd commit e6b3994

File tree

6 files changed

+220
-219
lines changed

6 files changed

+220
-219
lines changed
Lines changed: 41 additions & 68 deletions
Original file line numberDiff line numberDiff line change
@@ -1,94 +1,67 @@
11
---
2-
title: "Deploy & manage Machine Learning Server web services in Python"
2+
title: "Deploy and Manage Machine Learning Server Web Services in Python"
33
description: "This class is for SQL Machine Learning Services and Machine Learning Server for managing web services."
44
author: VanMSFT
55
ms.author: vanto
6-
ms.date: 2/16/2018
6+
ms.reviewer: randolphwest
7+
ms.date: 12/08/2025
78
ms.service: sql
89
ms.subservice: "machine-learning-services"
910
ms.topic: "reference"
10-
monikerRange: ">=sql-server-2017||>=sql-server-linux-ver15"
11+
monikerRange: ">=sql-server-2017 || >=sql-server-linux-ver15"
1112
---
1213

13-
# Machine Learning Server: manage web services with azureml-model-management-sdk
14-
15-
**Applies to: Machine Learning Server, SQL Server 2017**
14+
# Manage web services with azureml-model-management-sdk (Machine Learning Server)
1615

17-
'azureml-model-management-sdk' is a custom Python package developed by Microsoft. This package provides the classes and functions to deploy and interact with analytic web services. These web services are backed by code block and scripts in Python or R.
16+
[!INCLUDE [sssql17-md](../../../../includes/sssql17-md.md)]
1817

19-
This topic is a high-level description of package functionality. These classes and functions can be called directly. For syntax and other details, see the individual function help topics in the table of contents.
18+
[!INCLUDE [machine-learning-server-retirement](../../../../includes/machine-learning-server-retirement.md)]
2019

21-
<br/>
20+
`azureml-model-management-sdk` is a custom Python package developed by Microsoft. This package provides the classes and functions to deploy and interact with analytic web services. These web services are backed by code block and scripts in Python or R.
21+
22+
This article is a high-level description of package functionality. These classes and functions can be called directly. For syntax and other details, see the individual function help topics in the table of contents.
2223

2324
| Package details | Information |
24-
|--------|-|
25-
| Current version: | 1.0.1b7 |
25+
| --- | --- |
26+
| Current version: | 1.0.1b7 |
2627
| Built on: | [Anaconda](https://www.anaconda.com/) distribution of [Python 3.5](https://www.python.org/doc) |
27-
| Package distribution: | [Machine Learning Server 9.x](/machine-learning-server/what-is-machine-learning-server) </br>[SQL Server 2017 Machine Learning Server (Standalone)](../../../r/r-server-standalone.md) |
28-
29-
28+
| Package distribution: | [Machine Learning Server 9.x](/machine-learning-server/what-is-machine-learning-server)<br />[SQL Server 2017 Machine Learning Server (Standalone)](../../../r/r-server-standalone.md) |
3029

3130
## How to use this package
3231

33-
The **azureml-model-management-sdk** package is installed as part of Machine Learning Server and SQL Server 2017 Machine Learning Server (Standalone) when you add Python to your installation. It is also [available locally on Windows](/machine-learning-server/install/python-libraries-interpreter). When you install these products, you get the full collection of proprietary packages plus a Python distribution with its modules and interpreters.
32+
The `azureml-model-management-sdk` package is installed as part of Machine Learning Server and SQL Server 2017 Machine Learning Server (Standalone) when you add Python to your installation. It's also [available locally on Windows](/machine-learning-server/install/python-libraries-interpreter). When you install these products, you get the full collection of proprietary packages plus a Python distribution with its modules and interpreters.
3433

35-
You can use any Python IDE to write Python scripts that call the classes and functions in **azureml-model-management-sdk**. However, the script must run on a computer having Machine Learning Server or SQL Server 2017 Machine Learning Server (Standalone) with Python.
34+
You can use any Python IDE to write Python scripts that call the classes and functions in `azureml-model-management-sdk`. However, the script must run on a computer having Machine Learning Server or SQL Server 2017 Machine Learning Server (Standalone) with Python.
3635

3736
## Use cases
3837

39-
There are three primary use cases for this release:
38+
There are three primary use cases for this release:
4039

41-
+ Adding authentication logic to your Python script
42-
+ Deploying standard or real-time Python web services
43-
+ Managing and consuming these web services
40+
- Adding authentication logic to your Python script
41+
- Deploying standard or real-time Python web services
42+
- Managing and consuming these web services
4443

4544
## Main classes and functions
4645

47-
* [DeployClient](deploy-client.md)
48-
49-
* [MLServer](mlserver.md)
50-
51-
* [Operationalization](operationalization.md)
52-
53-
* [OperationalizationDefinition](operationalization-definition.md)
54-
55-
* [ServiceDefinition](service-definition.md)
56-
57-
* [RealtimeDefinition](realtime-definition.md)
58-
59-
* [Service](service.md)
60-
61-
* [ServiceResponse](service-response.md)
62-
63-
* [Batch](batch.md)
64-
65-
* [BatchResponse](batch-response.md)
66-
67-
68-
69-
70-
## Next steps
71-
72-
Add both Python modules to your computer by running setup:
73-
74-
+ Set up [Machine Learning Server](/machine-learning-server/install/machine-learning-server-install) for Python or [Python Machine Learning Services](../../../install/sql-machine-learning-services-windows-install.md).
75-
76-
Next, follow this quickstart to try it yourself:
77-
78-
+ [Quickstart: How to deploy Python model as a service](/machine-learning-server/operationalize/python/quickstart-deploy-python-web-service)
79-
80-
Or, read this how-to article:
81-
+ [How to publish and manage web services in Python](/machine-learning-server/operationalize/python/how-to-deploy-manage-web-services)
82-
83-
84-
## See also
85-
86-
+ [Library Reference](/machine-learning-server/python-reference/introducing-python-package-reference)
87-
88-
+ [Install Machine Learning Server](/machine-learning-server/what-is-machine-learning-server)
89-
90-
+ [Install the Python interpreter and libraries on Windows](/machine-learning-server/install/python-libraries-interpreter)
91-
92-
+ [How to authenticate in Python with this package](/machine-learning-server/operationalize/python/how-to-authenticate-in-python)
93-
94-
+ [How to list, get, and consume services in Python with this package](/machine-learning-server/operationalize/python/how-to-consume-web-services)
46+
- [Class DeployClient](deploy-client.md)
47+
- [Class MLServer](mlserver.md)
48+
- [Class Operationalization](operationalization.md)
49+
- [Class OperationalizationDefinition](operationalization-definition.md)
50+
- [ServiceDefinition](service-definition.md)
51+
- [Class RealtimeDefinition](realtime-definition.md)
52+
- [Class Service](service.md)
53+
- [Class ServiceResponse](service-response.md)
54+
- [Class Batch](batch.md)
55+
- [Class BatchResponse](batch-response.md)
56+
57+
## Related content
58+
59+
- [Library Reference](/machine-learning-server/python-reference/introducing-python-package-reference)
60+
- [Install Machine Learning Server](/machine-learning-server/what-is-machine-learning-server)
61+
- [Install the Python interpreter and libraries on Windows](/machine-learning-server/install/python-libraries-interpreter)
62+
- [How to authenticate in Python with this package](/machine-learning-server/operationalize/python/how-to-authenticate-in-python)
63+
- [How to list, get, and consume services in Python with this package](/machine-learning-server/operationalize/python/how-to-consume-web-services)
64+
- [Machine Learning Server](/machine-learning-server/install/machine-learning-server-install)
65+
- [Install SQL Server Machine Learning Services (Python and R) on Windows](../../../install/sql-machine-learning-services-windows-install.md)
66+
- [Quickstart: How to deploy Python model as a service](/machine-learning-server/operationalize/python/quickstart-deploy-python-web-service)
67+
- [How to publish and manage web services in Python](/machine-learning-server/operationalize/python/how-to-deploy-manage-web-services)

0 commit comments

Comments
 (0)