Skip to content

Commit 2852e0f

Browse files
authored
Merge pull request MicrosoftDocs#7843 from HeidiSteen/heidist-quickstart
Edits to revoscalepy tutorial
2 parents 6266f34 + cd0a079 commit 2852e0f

1 file changed

Lines changed: 9 additions & 3 deletions

File tree

docs/advanced-analytics/tutorials/use-python-revoscalepy-to-create-model.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Write Python script using revoscalepy functions to create data scie
44
ms.prod: sql
55
ms.technology: machine-learning
66

7-
ms.date: 10/22/2018
7+
ms.date: 10/25/2018
88
ms.topic: tutorial
99
author: HeidiSteen
1010
ms.author: heidist
@@ -13,7 +13,13 @@ manager: cgronlun
1313
# Use Python with revoscalepy to create a model that runs remotely on SQL Server
1414
[!INCLUDE[appliesto-ss-xxxx-xxxx-xxx-md-winonly](../../includes/appliesto-ss-xxxx-xxxx-xxx-md-winonly.md)]
1515

16-
The [revoscalepy](https://docs.microsoft.com/machine-learning-server/python-reference/revoscalepy/revoscalepy-package) Python library from Microsoft provides data science algorithms for data exploration, visualization, transformations, and analysis. You can find this library in SQL Server with [Machine Learning Services](../install/sql-machine-learning-services-windows-install.md), in a non-SQL standalone [Microsoft Machine Learning Server](https://docs.microsoft.com/machine-learning-server/index), and as a [client-side Python library](https://docs.microsoft.com/machine-learning-server/install/python-libraries-interpreter) used for development on a workstation. From a workstation, you can call **revoscalepy** functions that shift code execution from the local system to a remote SQL Server or Machine Learning Server.
16+
The [revoscalepy](https://docs.microsoft.com/machine-learning-server/python-reference/revoscalepy/revoscalepy-package) Python library from Microsoft provides data science algorithms for data exploration, visualization, transformations, and analysis. This library has strategic importance in Python integration scenarios in SQL Server. On a multi-core server, **revoscalepy** functions can run in parallel. In a distributed architecture with a central server and client workstations (separate physical computers, all having the same **revoscalepy** library), you can write Python code that starts locally, but then shifts execution to a remote SQL Server instance where data resides.
17+
18+
You can find **revoscalepy** in the following Microsoft products and distributions:
19+
20+
+ [SQL Server Machine Learning Services (in-database)](../install/sql-machine-learning-services-windows-install.md)
21+
+ [Microsoft Machine Learning Server (non-SQL, standalone server)](https://docs.microsoft.com/machine-learning-server/index)
22+
+ [Client-side Python libraries (for development workstations)](https://docs.microsoft.com/machine-learning-server/install/python-libraries-interpreter)
1723

1824
This exercise demonstrates how to create a linear regression model based on [rx_lin_mod](https://docs.microsoft.com/machine-learning-server/python-reference/revoscalepy/rx-lin-mod), one of the algorithms in **revoscalepy** that accepts compute context as an input. The code you'll run in this exercise shifts code execution from a local to remote computing environment, enabled by **revoscalepy** functions that enable a remote compute context.
1925

@@ -141,7 +147,7 @@ In this example, you set the compute context by using an argument of the individ
141147

142148
`linmod = rx_lin_mod_ex("ArrDelay ~ DayOfWeek", data = data, compute_context = sql_compute_context)`
143149

144-
This compute context is reused in the call to [rxsummary](https://docs.microsoft.com/machine-learning-server/python-reference/revoscalepy/rx-summary):.
150+
This compute context is reused in the call to [rxsummary](https://docs.microsoft.com/machine-learning-server/python-reference/revoscalepy/rx-summary):
145151

146152
`summary = rx_summary("ArrDelay ~ DayOfWeek", data = data_source, compute_context = sql_compute_context)`
147153

0 commit comments

Comments
 (0)