Skip to content

Commit 5dfc836

Browse files
committed
local v remote
1 parent a3fe094 commit 5dfc836

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

articles/machine-learning/how-to-train-with-datasets.md

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,7 @@ ms.date: 03/09/2020
1919
# Train with datasets in Azure Machine Learning
2020
[!INCLUDE [applies-to-skus](../../includes/aml-applies-to-basic-enterprise-sku.md)]
2121

22-
In this article, you learn the two ways to consume [Azure Machine Learning datasets](https://docs.microsoft.com/python/api/azureml-core/azureml.core.dataset%28class%29?view=azure-ml-py) in a remote experiment training runs without worrying about connection strings or data paths.
23-
24-
- Option 1: If you have structured data, create a TabularDataset and use it directly in your training script.
25-
26-
- Option 2: If you have unstructured data, create a FileDataset and mount or download files to a remote compute for training.
22+
In this article, you learn how to consume [Azure Machine Learning datasets](https://docs.microsoft.com/python/api/azureml-core/azureml.core.dataset%28class%29?view=azure-ml-py) in your training experiments. Use them in your local or remote compute target without worrying about connection strings or data paths.
2723

2824
Azure Machine Learning datasets provide a seamless integration with Azure Machine Learning training products like [ScriptRun](https://docs.microsoft.com/python/api/azureml-core/azureml.core.scriptrun?view=azure-ml-py), [Estimator](https://docs.microsoft.com/python/api/azureml-train-core/azureml.train.estimator?view=azure-ml-py), [HyperDrive](https://docs.microsoft.com/python/api/azureml-train-core/azureml.train.hyperdrive?view=azure-ml-py) and [Azure Machine Learning pipelines](how-to-create-your-first-pipeline.md).
2925

@@ -40,7 +36,17 @@ To create and train with datasets, you need:
4036
> [!Note]
4137
> Some Dataset classes have dependencies on the [azureml-dataprep](https://docs.microsoft.com/python/api/azureml-dataprep/?view=azure-ml-py) package. For Linux users, these classes are supported only on the following distributions: Red Hat Enterprise Linux, Ubuntu, Fedora, and CentOS.
4238
43-
## Option 1: Use datasets directly in training scripts
39+
40+
## Local Options
41+
42+
## Remote Options
43+
44+
There are two ways to consume Azure Machine Learning datasets in remote experiment training runs:
45+
46+
Option 1: If you have structured data, create a TabularDataset and use it directly in your training script.
47+
48+
Option 2: If you have unstructured data, create a FileDataset and mount or download files to a remote compute for training.
49+
### Option 1: Use datasets directly in training scripts
4450

4551
In this example, you create a [TabularDataset](https://docs.microsoft.com/python/api/azureml-core/azureml.data.tabulardataset?view=azure-ml-py) and use it as a direct input to your `estimator` object for training.
4652

0 commit comments

Comments
 (0)