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
* See the Azure Machine Learning Data Prep SDK [tutorial](tutorial-data-prep.md) for an example of solving a specific scenario
319
+
* See the Azure Machine Learning Data Prep SDK [reference documentation](https://docs.microsoft.com/python/api/overview/azure/ml/intro?view=azure-ml-py#dataprep) for more detail.
Copy file name to clipboardExpand all lines: articles/machine-learning/service/how-to-transform-data.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ ms.custom: seodec18
19
19
In this article, you learn different methods of transforming data using the `azureml-dataprep` package. The package offers functions that make it simple to add columns, filter out unwanted rows or columns, and impute missing values. See full reference documentation for the [azureml-dataprep package](https://aka.ms/data-prep-sdk).
20
20
21
21
> [!Important]
22
-
> If you are building a new solution, try the [Azure Machine Learning Datasets](how-to-explore-prepare-data.md) (preview) to transform your data, snapshot data, and store versioned dataset definitions. Datasets is the next version of the data prep SDK, offering expanded functionality for managing datasets in AI solutions.
22
+
> If you are building a new solution, try the [Azure Machine Learning Datasets](how-to-explore-prepare-data.md) (preview) to transform your data, snapshot data, and store versioned dataset definitions. Datasets is the next version of the data prep SDK, offering expanded functionality for managing datasets in AI solutions.
23
23
> If you use the `azureml-dataprep` package to create a dataflow with your transformations instead of using the `azureml-datasets` package to create a dataset, you won't be able to use snapshots or versioned datasets later.
24
24
25
25
This how-to shows examples for the following tasks:
@@ -341,7 +341,7 @@ Use the expression builder `col`, specify the column name as a string argument `
341
341
342
342
In this example, `dflow.filter(col('Tip_amount') > 0)` returns a new data flow with the rows in which the value of `Tip_amount` is greater than 0.
343
343
344
-
> [!NOTE]
344
+
> [!NOTE]
345
345
> `Tip_amount` is first converted to numeric, which allows us to build an expression comparing it against other numeric values.
346
346
347
347
```python
@@ -513,4 +513,4 @@ dflow.head(2)
513
513
514
514
## Next steps
515
515
516
-
* See the Azure Machine Learning Data Prep SDK [tutorial](tutorial-data-prep.md) for an example of solving a specific scenario
516
+
* See the Azure Machine Learning Data Prep SDK [reference documentation](https://docs.microsoft.com/python/api/overview/azure/ml/intro?view=azure-ml-py#dataprep) for more detail.
Copy file name to clipboardExpand all lines: articles/machine-learning/service/overview-what-happened-to-workbench.md
+10-12Lines changed: 10 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,9 +14,9 @@ ms.custom: seodec18
14
14
---
15
15
# What happened to Azure Machine Learning Workbench?
16
16
17
-
The Azure Machine Learning Workbench application and some other early features were deprecated and replaced in the September 2018 release to make way for an improved [architecture](concept-azure-machine-learning-architecture.md).
17
+
The Azure Machine Learning Workbench application and some other early features were deprecated and replaced in the September 2018 release to make way for an improved [architecture](concept-azure-machine-learning-architecture.md).
18
18
19
-
To improve your experience, the release contains many significant updates prompted by customer feedback. The core functionality from experiment runs to model deployment hasn't changed. But now, you can use the robust <ahref="https://aka.ms/aml-sdk"target="_blank">SDK</a> and the [Azure CLI](reference-azure-machine-learning-cli.md) to accomplish your machine learning tasks and pipelines.
19
+
To improve your experience, the release contains many significant updates prompted by customer feedback. The core functionality from experiment runs to model deployment hasn't changed. But now, you can use the robust <ahref="https://aka.ms/aml-sdk"target="_blank">SDK</a> and the [Azure CLI](reference-azure-machine-learning-cli.md) to accomplish your machine learning tasks and pipelines.
20
20
21
21
Most of the artifacts that were created in the earlier version of Azure Machine Learning service are stored in your own local or cloud storage. These artifacts won't ever disappear.
22
22
@@ -42,13 +42,13 @@ Although there are new improved CLI and SDK clients in the current release, the
42
42
43
43
## Support timeline
44
44
45
-
On January 9th, 2019 support for Machine Learning Workbench, Azure Machine Learning Experimentation and Model Management accounts, and their associated SDK and CLI has ended.
45
+
On January 9th, 2019 support for Machine Learning Workbench, Azure Machine Learning Experimentation and Model Management accounts, and their associated SDK and CLI has ended.
46
46
47
47
All the latest capabilities are available by using this <ahref="https://aka.ms/aml-sdk"target="_blank">SDK</a>, the [CLI](reference-azure-machine-learning-cli.md), and the [portal](how-to-manage-workspace.md).
48
48
49
49
## What about run histories?
50
50
51
-
Older run histories are no longer accessible, how you can still see your runs in the latest version.
51
+
Older run histories are no longer accessible, how you can still see your runs in the latest version.
52
52
53
53
Run histories are now called **experiments**. You can collect your model's experiments and explore them by using the SDK, the CLI, or the Azure portal.
54
54
@@ -60,11 +60,9 @@ Start training your models and tracking the run histories using the new CLI and
60
60
61
61
## Can I still prep data?
62
62
63
-
Your pre-existing data preparation files aren't portable to the latest release because we don't have Machine Learning Workbench anymore. But you can still prepare any size data set for modeling.
63
+
Your pre-existing data preparation files aren't portable to the latest release because we don't have Machine Learning Workbench anymore. But you can still prepare any size data set for modeling.
64
64
65
-
With data sets of any size, you can use the [data prep package for Azure Machine Learning](https://aka.ms/data-prep-sdk) to quickly prepare your data prior to modeling by writing Python code.
66
-
67
-
You can follow [this tutorial](tutorial-data-prep.md) to learn more about how to use Azure Machine Learning Data Prep SDK.
65
+
With data sets of any size, you can use the [data prep package for Azure Machine Learning](https://aka.ms/data-prep-sdk) to quickly prepare your data prior to modeling by writing Python code.
68
66
69
67
## Will projects persist?
70
68
@@ -80,15 +78,15 @@ run = exp.submit(source_directory=script_folder,
80
78
81
79
## What about my registered models and images?
82
80
83
-
The models that you registered in your old model registry must be migrated to your new workspace if you want to continue to use them. To migrate your models, download the models and re-register them in your new workspace.
81
+
The models that you registered in your old model registry must be migrated to your new workspace if you want to continue to use them. To migrate your models, download the models and re-register them in your new workspace.
84
82
85
83
The images that you created in your old image registry cannot be directly migrated to the new workspace. In most cases, the model can be deployed without having to create an image. If needed, you can create an image for the model in the new workspace. For more information, see [Manage, register, deploy, and monitor machine learning models](concept-model-management-and-deployment.md).
86
84
87
85
## What about deployed web services?
88
86
89
87
Now that support for the old CLI has ended, you can no longer redeploy models or manage the web services you originally deployed with your Model Management account. However, those web services will continue to work for as long as Azure Container Service (ACS) is still supported.
90
88
91
-
In the latest version, models are deployed as web services to Azure Container Instances (ACI) or Azure Kubernetes Service (AKS) clusters. You can also deploy to FPGAs and to Azure IoT Edge.
89
+
In the latest version, models are deployed as web services to Azure Container Instances (ACI) or Azure Kubernetes Service (AKS) clusters. You can also deploy to FPGAs and to Azure IoT Edge.
92
90
93
91
Learn more in these articles:
94
92
+[Where and how to deploy models](how-to-deploy-and-where.md)
@@ -112,10 +110,10 @@ The domain packages for computer vision, text analytics, and forecasting can't b
112
110
113
111
## Next steps
114
112
115
-
Learn about the [latest architecture for Azure Machine Learning service](concept-azure-machine-learning-architecture.md).
113
+
Learn about the [latest architecture for Azure Machine Learning service](concept-azure-machine-learning-architecture.md).
116
114
117
115
For an overview of the service, read [What is Azure Machine Learning service?](overview-what-is-azure-ml.md).
118
116
119
117
Create your first experiment with the two-part tutorial to [setup environment and workspace](tutorial-1st-experiment-sdk-setup.md) and [train your first model](tutorial-1st-experiment-sdk-train.md)
120
118
121
-
For a more in-depth experience of this workflow, follow the [full-length tutorial](tutorial-train-models-with-aml.md) that contains detailed steps for training and deploying models with Azure Machine Learning service.
119
+
For a more in-depth experience of this workflow, follow the [full-length tutorial](tutorial-train-models-with-aml.md) that contains detailed steps for training and deploying models with Azure Machine Learning service.
Copy file name to clipboardExpand all lines: articles/machine-learning/service/overview-what-is-azure-ml.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -103,8 +103,9 @@ You get credits to spend on Azure services. After they're used up, you can keep
103
103
-[Create a Machine Learning service workspace](how-to-manage-workspace.md) to get started.
104
104
105
105
- Follow the full-length tutorials:
106
+
+[Create a workspace and train your first ML model](tutorial-1st-experiment-sdk-setup.md)
106
107
+[Train an image classification model with Azure Machine Learning service](tutorial-train-models-with-aml.md)
107
-
+[Prepare data and use automated machine learning to auto-train a regression model](tutorial-data-prep.md)
108
+
108
109
109
110
- Learn about [machine learning pipelines](/azure/machine-learning/service/concept-ml-pipelines) to build, optimize, and manage your machine learning scenarios.
0 commit comments