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
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)
17
23
18
24
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.
19
25
@@ -141,7 +147,7 @@ In this example, you set the compute context by using an argument of the individ
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):
0 commit comments