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
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.
27
23
28
24
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).
29
25
@@ -40,7 +36,17 @@ To create and train with datasets, you need:
40
36
> [!Note]
41
37
> 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.
42
38
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
44
50
45
51
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.
0 commit comments