Lokasi ngalangkungan proxy:   [ UP ]  
[Ngawartoskeun bug]   [Panyetelan cookie]                
Skip to content

Commit e803822

Browse files
committed
Added info about ML Services for Azure SQL DB.
1 parent 3d5c297 commit e803822

3 files changed

Lines changed: 6 additions & 12 deletions

File tree

docs/advanced-analytics/what-is-sql-server-machine-learning.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: R in SQL Server and Python in SQL Server, integrating with relation
44
ms.prod: sql
55
ms.technology: machine-learning
66

7-
ms.date: 09/10/2018
7+
ms.date: 11/06/2018
88
ms.topic: overview
99
author: HeidiSteen
1010
ms.author: heidist
@@ -15,7 +15,7 @@ manager: cgronlun
1515

1616
SQL Server 2017 Machine Learning Services is an add-on to a database engine instance, used for executing R and Python code on SQL Server. Code runs in an extensibility framework, isolated from core engine processes, but fully available to relational data as stored procedures, as T-SQL script containing R or Python statements, or as R or Python code containing T-SQL.
1717

18-
If you previously used [SQL Server 2016 R Services](r/sql-server-r-services.md), Machine Learning Services in SQL Server 2017 is the next generation of R support, with updated versions of base R, RevoScaleR, MicrosoftML, and other libraries introduced in 2016.
18+
If you previously used [SQL Server 2016 R Services](r/sql-server-r-services.md), Machine Learning Services in SQL Server 2017 is the next generation of R support, with updated versions of base R, RevoScaleR, MicrosoftML, and other libraries introduced in 2016. If you are using Azure SQL Database, [Machine Learning Services (with R)]((https://docs.microsoft.com/azure/sql-database/sql-database-connect-query-r)) is in public preview.
1919

2020
The key value proposition of Machine Learning Services is the power of its enterprise R and Python packages to deliver advanced analytics at scale, and the ability to bring calculations and processing to where the data resides, eliminating the need to pull data across the network.
2121

docs/advanced-analytics/what-s-new-in-sql-server-machine-learning-services.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: New feature announcements for each release of SQL Server 2016 R Ser
44
ms.prod: sql
55
ms.technology: machine-learning
66

7-
ms.date: 09/24/2018
7+
ms.date: 11/06/2018
88
ms.topic: conceptual
99
author: HeidiSteen
1010
ms.author: heidist
@@ -98,9 +98,9 @@ On Linux, SQL Server 2017 does not have R or Python integration, but you can use
9898

9999
<a name="azure-sql-database-roadmap"></a>
100100

101-
## Azure SQL Database roadmap
101+
## Machine Learning Services in Azure SQL Database
102102

103-
There is currently no support for Machine Learning Services (R and Python) in Azure SQL Database. Support is on the roadmap but there is no projected release date at this time.
103+
Machine Learning Services (with R) in Azure SQL Database is in public preview. For more information, see [Quickstart: Use Machine Learning Services (with R) in Azure SQL Database (preview)](https://docs.microsoft.com/azure/sql-database/sql-database-connect-query-r).
104104

105105
## Next steps
106106

docs/t-sql/queries/predict-transact-sql.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "PREDICT (Transact-SQL) | Microsoft Docs"
33
ms.custom: ""
4-
ms.date: "07/02/2018"
4+
ms.date: "11/06/2018"
55
ms.prod: sql
66
ms.prod_service: "sql-database"
77
ms.reviewer: ""
@@ -65,9 +65,6 @@ The PARAMETERS parameter is used to specify optional user-defined parameters use
6565

6666
The name of each parameter is specific to the model type. For example, the [rxPredict](https://docs.microsoft.com/machine-learning-server/r-reference/revoscaler/rxpredict) function in RevoScaleR supports the parameter `@computeResiduals`, which indicates whether residuals should be computed when scoring a logistic regression model. If you are calling a compatible model, you could pass that parameter name and a TRUE or FALSE value to the `PREDICT` function.
6767

68-
> [!NOTE]
69-
> This option does not work in pre-release versions of SQL Server 2017.
70-
7168
**WITH ( <result_set_definition> )**
7269

7370
The WITH clause is used to specify the schema of the output returned by the `PREDICT` function.
@@ -167,9 +164,6 @@ END;
167164

168165
### Creating an R model and generating scores using optional model parameters
169166

170-
> [!NOTE]
171-
> Use of the parameters argument is not supported in Release Candidate 1.
172-
173167
This example assumes that you have created a logistic regression model fitted with a covariance matrix, using a call to RevoScaleR such as this:
174168

175169
```R

0 commit comments

Comments
 (0)