Skip to content

Commit afb9f47

Browse files
author
Larry Franks
committed
removing preview tag, validating freshness
1 parent ddcd6a9 commit afb9f47

File tree

2 files changed

+4
-18
lines changed

2 files changed

+4
-18
lines changed

articles/machine-learning/how-to-auto-train-nlp-models.md

Lines changed: 3 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,6 @@ You can seamlessly integrate with the [Azure Machine Learning data labeling](how
4949

5050
[!INCLUDE [sdk v2](../../includes/machine-learning-sdk-v2.md)]
5151

52-
[!INCLUDE [preview disclaimer](../../includes/machine-learning-preview-generic-disclaimer.md)]
53-
5452
* Azure subscription. If you don't have an Azure subscription, sign up to try the [free or paid version of Azure Machine Learning](https://azure.microsoft.com/free/) today.
5553

5654
* An Azure Machine Learning workspace with a GPU training compute. To create the workspace, see [Create workspace resources](quickstart-create-resources.md). See [GPU optimized virtual machine sizes](../virtual-machines/sizes-gpu.md) for more details of GPU instances provided by Azure.
@@ -77,9 +75,9 @@ Determine what NLP task you want to accomplish. Currently, automated ML supports
7775

7876
Task |AutoML job syntax| Description
7977
----|----|---
80-
Multi-class text classification | CLI v2: `text_classification` <br> SDK v2 (preview): `text_classification()`| There are multiple possible classes and each sample can be classified as exactly one class. The task is to predict the correct class for each sample. <br> <br> For example, classifying a movie script as "Comedy" or "Romantic".
81-
Multi-label text classification | CLI v2: `text_classification_multilabel` <br> SDK v2 (preview): `text_classification_multilabel()`| There are multiple possible classes and each sample can be assigned any number of classes. The task is to predict all the classes for each sample<br> <br> For example, classifying a movie script as "Comedy", or "Romantic", or "Comedy and Romantic".
82-
Named Entity Recognition (NER)| CLI v2:`text_ner` <br> SDK v2 (preview): `text_ner()`| There are multiple possible tags for tokens in sequences. The task is to predict the tags for all the tokens for each sequence. <br> <br> For example, extracting domain-specific entities from unstructured text, such as contracts or financial documents.
78+
Multi-class text classification | CLI v2: `text_classification` <br> SDK v2: `text_classification()`| There are multiple possible classes and each sample can be classified as exactly one class. The task is to predict the correct class for each sample. <br> <br> For example, classifying a movie script as "Comedy" or "Romantic".
79+
Multi-label text classification | CLI v2: `text_classification_multilabel` <br> SDK v2: `text_classification_multilabel()`| There are multiple possible classes and each sample can be assigned any number of classes. The task is to predict all the classes for each sample<br> <br> For example, classifying a movie script as "Comedy", or "Romantic", or "Comedy and Romantic".
80+
Named Entity Recognition (NER)| CLI v2:`text_ner` <br> SDK v2: `text_ner()`| There are multiple possible tags for tokens in sequences. The task is to predict the tags for all the tokens for each sequence. <br> <br> For example, extracting domain-specific entities from unstructured text, such as contracts or financial documents.
8381

8482
## Thresholding
8583

@@ -197,8 +195,6 @@ For CLI v2 AutoML jobs you configure your experiment in a YAML file like the fol
197195

198196
[!INCLUDE [sdk v2](../../includes/machine-learning-sdk-v2.md)]
199197

200-
[!INCLUDE [preview disclaimer](../../includes/machine-learning-preview-generic-disclaimer.md)]
201-
202198
For AutoML jobs via the SDK, you configure the job with the specific NLP task function. The following example demonstrates the configuration for `text_classification`.
203199

204200
```Python
@@ -250,8 +246,6 @@ featurization:
250246

251247
[!INCLUDE [sdk v2](../../includes/machine-learning-sdk-v2.md)]
252248

253-
[!INCLUDE [preview disclaimer](../../includes/machine-learning-preview-generic-disclaimer.md)]
254-
255249
You can specify your dataset language with the `set_featurization()` method. BERT is also used in the featurization process of automated ML experiment training, learn more about [BERT integration and featurization in automated ML](how-to-configure-auto-features.md#bert-integration-in-automated-ml).
256250

257251
```python
@@ -273,8 +267,6 @@ You can also run your NLP experiments with distributed training on an Azure ML c
273267

274268
[!INCLUDE [sdk v2](../../includes/machine-learning-sdk-v2.md)]
275269

276-
[!INCLUDE [preview disclaimer](../../includes/machine-learning-preview-generic-disclaimer.md)]
277-
278270
This is handled automatically by automated ML when the parameters `max_concurrent_iterations = number_of_vms` and `enable_distributed_dnn_training = True` are provided in your `AutoMLConfig` during experiment setup. Doing so, schedules distributed training of the NLP models and automatically scales to every GPU on your virtual machine or cluster of virtual machines. The max number of virtual machines allowed is 32. The training is scheduled with number of virtual machines that is in powers of two.
279271

280272
```python
@@ -303,8 +295,6 @@ az ml job create --file ./hello-automl-job-basic.yml --workspace-name [YOUR_AZUR
303295

304296
[!INCLUDE [sdk v2](../../includes/machine-learning-sdk-v2.md)]
305297

306-
[!INCLUDE [preview disclaimer](../../includes/machine-learning-preview-generic-disclaimer.md)]
307-
308298
With the `MLClient` created earlier, you can run this `CommandJob` in the workspace.
309299

310300
```python
@@ -335,8 +325,6 @@ See the following sample YAML files for each NLP task.
335325

336326
[!INCLUDE [sdk v2](../../includes/machine-learning-sdk-v2.md)]
337327

338-
[!INCLUDE [preview disclaimer](../../includes/machine-learning-preview-generic-disclaimer.md)]
339-
340328
See the sample notebooks for detailed code examples for each NLP task.
341329

342330
* [Multi-class text classification](https://github.com/Azure/azureml-examples/blob/v2samplesreorg/sdk/python/jobs/automl-standalone-jobs/automl-nlp-text-classification-multiclass-task-sentiment-analysis/automl-nlp-text-classification-multiclass-task-sentiment.ipynb)
@@ -433,8 +421,6 @@ search_space:
433421
434422
[!INCLUDE [sdk v2](../../includes/machine-learning-sdk-v2.md)]
435423
436-
[!INCLUDE [preview disclaimer](../../includes/machine-learning-preview-generic-disclaimer.md)]
437-
438424
You can set the limits for your model sweeping job:
439425
440426
```python

articles/machine-learning/how-to-migrate-from-v1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: 'Migrate from v1 to v2'
33
titleSuffix: Azure Machine Learning
4-
description: Migrate from v1 to v2 of Azure Machine Learning REST APIs, CLI extension, and Python SDK (preview).
4+
description: Migrate from v1 to v2 of Azure Machine Learning REST APIs, CLI extension, and Python SDK.
55
services: machine-learning
66
ms.service: machine-learning
77
ms.subservice: core

0 commit comments

Comments
 (0)