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

Commit f1cf728

Browse files
committed
Swapping Overview and Prerequisites sections
1 parent a528f54 commit f1cf728

1 file changed

Lines changed: 15 additions & 15 deletions

File tree

docs/machine-learning/tutorials/sqldev-in-database-python-for-sql-developers.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -46,21 +46,6 @@ In [part five](sqldev-py6-operationalize-the-model.md), you'll learn how to oper
4646
> [!NOTE]
4747
> This tutorial is available in both R and Python. For the R version, see [In-database analytics for R developers](sqldev-in-database-r-for-sql-developers.md).
4848
49-
## Overview
50-
51-
The process of building a machine learning solution is a complex one that can involve multiple tools, and the coordination of subject matter experts across several phases:
52-
53-
+ obtaining and cleaning data
54-
+ exploring the data and building features useful for modeling
55-
+ training and tuning the model
56-
+ deployment to production
57-
58-
Development and testing of the actual code is best performed using a dedicated development environment. However, after the script is fully tested, you can easily deploy it to [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] using [!INCLUDE[tsql](../../includes/tsql-md.md)] stored procedures in the familiar environment of Azure Data Studio or [!INCLUDE[ssManStudio](../../includes/ssmanstudio-md.md)]. Wrapping external code in stored procedures is the primary mechanism for operationalizing code in SQL Server.
59-
60-
Whether you are a SQL programmer new to Python, or a Python developer new to SQL, this five-part tutorial series introduces a typical workflow for conducting in-database analytics with Python and SQL Server.
61-
62-
After the model has been saved to the database, you can call the model for predictions from [!INCLUDE[tsql](../../includes/tsql-md.md)] by using stored procedures.
63-
6449
## Prerequisites
6550

6651
::: moniker range=">=sql-server-2017||>=sql-server-linux-ver15||=sqlallproducts-allversions"
@@ -82,6 +67,21 @@ All tasks can be done using [!INCLUDE[tsql](../../includes/tsql-md.md)] stored p
8267

8368
This tutorial series assumes familiarity with basic database operations such as creating databases and tables, importing data, and writing SQL queries. It does not assume you know Python and all Python code is provided.
8469

70+
## Overview
71+
72+
The process of building a machine learning solution is a complex one that can involve multiple tools, and the coordination of subject matter experts across several phases:
73+
74+
+ obtaining and cleaning data
75+
+ exploring the data and building features useful for modeling
76+
+ training and tuning the model
77+
+ deployment to production
78+
79+
Development and testing of the actual code is best performed using a dedicated development environment. However, after the script is fully tested, you can easily deploy it to [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] using [!INCLUDE[tsql](../../includes/tsql-md.md)] stored procedures in the familiar environment of Azure Data Studio or [!INCLUDE[ssManStudio](../../includes/ssmanstudio-md.md)]. Wrapping external code in stored procedures is the primary mechanism for operationalizing code in SQL Server.
80+
81+
Whether you are a SQL programmer new to Python, or a Python developer new to SQL, this five-part tutorial series introduces a typical workflow for conducting in-database analytics with Python and SQL Server.
82+
83+
After the model has been saved to the database, you can call the model for predictions from [!INCLUDE[tsql](../../includes/tsql-md.md)] by using stored procedures.
84+
8585
## Next steps
8686

8787
In this article, you:

0 commit comments

Comments
 (0)