From 646e7c717828425440ea4aa88aaaa9edd71fdf24 Mon Sep 17 00:00:00 2001 From: NelGson Date: Thu, 17 Aug 2017 20:49:52 -0700 Subject: [PATCH 1/3] Updated Feature readme added ML Services Python --- samples/features/readme.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/samples/features/readme.md b/samples/features/readme.md index 54139895..944ef2c2 100644 --- a/samples/features/readme.md +++ b/samples/features/readme.md @@ -10,7 +10,11 @@ Master Data Services (MDS) is the SQL Server solution for master data management [R Services](r-services) -SQL Server R Services brings R processing close to the data, allowing more scalable and more efficient predictive analytics. +SQL Server R Services (in SQL Server 2016 and above) brings R processing close to the data, allowing more scalable and more efficient predictive analytics using R in-database. + +[ML Services](ml-services) + +SQL Server ML Services (SQL Server 2017) brings Python processing close to the data, allowing more scalable and more efficient predictive analytics using Python in-database. [JSON Support](json) @@ -24,4 +28,4 @@ Built-in temporal functions enable you to easily track history of changes in a t [Reporting Services (SSRS)](reporting-services) -Reporting Services provides reporting capabilities for your organziation. Reporting Services can be integrated with SharePoint Server or used as a standalone service. \ No newline at end of file +Reporting Services provides reporting capabilities for your organziation. Reporting Services can be integrated with SharePoint Server or used as a standalone service. From dc7df49a29a89c0acc18e4ef2b5cd004b3f93e58 Mon Sep 17 00:00:00 2001 From: NelGson Date: Thu, 17 Aug 2017 21:10:10 -0700 Subject: [PATCH 2/3] added empty line at end of file --- .../customer-clustering/customer_clustering.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/samples/features/machine-learning-services/python/getting-started/customer-clustering/customer_clustering.sql b/samples/features/machine-learning-services/python/getting-started/customer-clustering/customer_clustering.sql index f0ed9c3d..205b51f7 100644 --- a/samples/features/machine-learning-services/python/getting-started/customer-clustering/customer_clustering.sql +++ b/samples/features/machine-learning-services/python/getting-started/customer-clustering/customer_clustering.sql @@ -101,4 +101,5 @@ SELECT customer.[c_email_address], customer.c_customer_sk JOIN [dbo].[py_customer_clusters] as c ON c.Customer = customer.c_customer_sk - WHERE c.cluster = 0; \ No newline at end of file + WHERE c.cluster = 0; + From 310fedbdf833037dfc280369fc8d02cb759774ff Mon Sep 17 00:00:00 2001 From: NelGson Date: Thu, 17 Aug 2017 21:10:40 -0700 Subject: [PATCH 3/3] added empty line at end of file --- .../customer-clustering/customer_clustering_ng.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/features/machine-learning-services/python/getting-started/customer-clustering/customer_clustering_ng.py b/samples/features/machine-learning-services/python/getting-started/customer-clustering/customer_clustering_ng.py index cc324788..0d7ad180 100644 --- a/samples/features/machine-learning-services/python/getting-started/customer-clustering/customer_clustering_ng.py +++ b/samples/features/machine-learning-services/python/getting-started/customer-clustering/customer_clustering_ng.py @@ -113,4 +113,4 @@ def perform_clustering(): print(customer_data.groupby(['cluster']).mean()) -perform_clustering() \ No newline at end of file +perform_clustering()