Skip to content

Commit d2f997e

Browse files
authored
Merge pull request #109093 from garyericson/03-25-emphasize-preview-note
ASQLML: Added preview note to all preview articles
2 parents e584871 + 6fce83c commit d2f997e

9 files changed

+19
-9
lines changed

articles/sql-database/sql-database-machine-learning-services-data-issues.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ ms.date: 04/11/2019
1919

2020
This article discusses some of the common issues you may encounter when moving data between R and SQL Database in [Machine Learning Services (with R) in Azure SQL Database](sql-database-machine-learning-services-overview.md). The experience you gain through this exercise provides essential background when working with data in your own script.
2121

22+
[!INCLUDE[ml-preview-note](../../includes/sql-database-ml-preview-note.md)]
23+
2224
Common issues that you may encounter include:
2325

2426
- Data types sometimes don't match
2527
- Implicit conversions might take place
2628
- Cast and convert operations are sometimes required
2729
- R and SQL use different data objects
2830

29-
[!INCLUDE[ml-preview-note](../../includes/sql-database-ml-preview-note.md)]
30-
3131
## Prerequisites
3232

3333
- If you don't have an Azure subscription, [create an account](https://azure.microsoft.com/free/) before you begin.
@@ -97,15 +97,15 @@ Now, review the text in **Messages** to see why the output is different.
9797

9898
```text
9999
STDOUT message(s) from external script:
100-
'data.frame': 3 obs. of 1 variable:
100+
'data.frame': 3 obs. of 1 variable:
101101
$ mytextvariable: Factor w/ 3 levels " ","hello","world": 2 1 3
102102
```
103103

104104
**Results - Example 2**
105105

106106
```text
107107
STDOUT message(s) from external script:
108-
'data.frame': 1 obs. of 3 variables:
108+
'data.frame': 1 obs. of 3 variables:
109109
$ c..hello..: Factor w/ 1 level "hello": 1
110110
$ X... : Factor w/ 1 level " ": 1
111111
$ c..world..: Factor w/ 1 level "world": 1

articles/sql-database/sql-database-machine-learning-services-overview.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,10 @@ In addition to the pre-installed packages, you can [install additional packages]
4444

4545
<a name="signup"></a>
4646

47-
## Sign up for the preview
47+
## Sign up for the preview (closed)
4848

4949
> [!IMPORTANT]
50-
> Sign up for Azure SQL Database Machine Learning Services (preview) is currently closed.
51-
52-
Machine Learning Services with R is not recommended for production workload during the preview.
50+
> Sign up for Azure SQL Database Machine Learning Services (preview) is currently **closed**.
5351
5452
## Next steps
5553

articles/sql-database/sql-database-tutorial-clustering-model-build.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ ms.date: 07/29/2019
1919

2020
In part two of this three-part tutorial series, you'll build a K-Means model in R to perform clustering. In the next part of this series, you'll deploy this model in a SQL database with Azure SQL Database Machine Learning Services (preview).
2121

22+
[!INCLUDE[ml-preview-note](../../includes/sql-database-ml-preview-note.md)]
23+
2224
In this article, you'll learn how to:
2325

2426
> [!div class="checklist"]

articles/sql-database/sql-database-tutorial-clustering-model-deploy.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ ms.date: 07/29/2019
1919

2020
In part three of this three-part tutorial series, you'll deploy a clustering model, developed in R, into a SQL database using Azure SQL Database Machine Learning Services (preview).
2121

22+
[!INCLUDE[ml-preview-note](../../includes/sql-database-ml-preview-note.md)]
23+
2224
You'll create a stored procedure with an embedded R script that performs clustering. Because your model executes in the Azure SQL database, it can easily be trained against data stored in the database.
2325

2426
In this article, you'll learn how to:

articles/sql-database/sql-database-tutorial-clustering-model-prepare-data.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ ms.date: 07/29/2019
1919

2020
In part one of this three-part tutorial series, you'll import and prepare the data from an Azure SQL database using R. Later in this series, you'll use this data to train and deploy a clustering model in R with Azure SQL Database Machine Learning Services (preview).
2121

22+
[!INCLUDE[ml-preview-note](../../includes/sql-database-ml-preview-note.md)]
23+
2224
*Clustering* can be explained as organizing data into groups where members of a group are similar in some way.
2325
You'll use the **K-Means** algorithm to perform the clustering of customers in a dataset of product purchases and returns. By clustering customers, you can focus your marketing efforts more effectively by targeting specific groups.
2426
K-Means clustering is an *unsupervised learning* algorithm that looks for patterns in data based on similarities.

articles/sql-database/sql-database-tutorial-predictive-model-build-compare.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ ms.date: 07/26/2019
1919

2020
In part two of this three-part tutorial series, you'll create two predictive models in R and select the most accurate model. In the next part of this series, you'll deploy this model in a SQL database with Azure SQL Database Machine Learning Services (preview).
2121

22+
[!INCLUDE[ml-preview-note](../../includes/sql-database-ml-preview-note.md)]
23+
2224
In this article, you'll learn how to:
2325

2426
> [!div class="checklist"]

articles/sql-database/sql-database-tutorial-predictive-model-deploy.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ ms.date: 07/26/2019
1919

2020
In part three of this three-part tutorial, you'll deploy a predictive model, developed in R, into a SQL database using Azure SQL Database Machine Learning Services (preview).
2121

22+
[!INCLUDE[ml-preview-note](../../includes/sql-database-ml-preview-note.md)]
23+
2224
You'll create a stored procedure with an embedded R script that makes predictions using the model. Because your model executes in the Azure SQL database, it can easily be trained against data stored in the database.
2325

2426
In this article, using the R scripts you developed in parts one and two, you'll learn how to:

articles/sql-database/sql-database-tutorial-predictive-model-prepare-data.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ ms.date: 07/26/2019
1919

2020
In part one of this three-part tutorial series, you'll import and prepare data from an Azure SQL database using R. Later in this series, you'll use this data to train and deploy a predictive machine learning model in R with Azure SQL Database Machine Learning Services (preview).
2121

22+
[!INCLUDE[ml-preview-note](../../includes/sql-database-ml-preview-note.md)]
23+
2224
For this tutorial series, imagine you own a ski rental business and you want to predict the number of rentals that you'll have on a future date. This information will help you get your stock, staff, and facilities ready.
2325

2426
In parts one and two of this series, you'll develop some R scripts in RStudio to prepare your data and train a machine learning model. Then, in part three, you'll run those R scripts inside a SQL database using stored procedures.

includes/sql-database-ml-preview-note.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.author: garye
88
---
99

1010
> [!IMPORTANT]
11-
> Azure SQL Database Machine Learning Services is currently in preview. Sign up for the preview is currently closed.
11+
> Azure SQL Database Machine Learning Services is currently in preview. Sign up for the preview is currently **closed**.
1212
>
1313
> This preview version is provided without a service level agreement, and it's not recommended for production workloads. Certain features might not be supported or might have constrained capabilities.
1414
> For more information, see [Supplemental Terms of Use for Microsoft Azure Previews](https://azure.microsoft.com/support/legal/preview-supplemental-terms/).

0 commit comments

Comments
 (0)