Skip to content

Commit 7b050ed

Browse files
authored
Merge pull request #101541 from nibaccam/patch-3
Minor updates
2 parents a201710 + 774c9e8 commit 7b050ed

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

articles/machine-learning/how-to-create-register-datasets.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ To create datasets from an [Azure datastore](how-to-access-data.md) by using the
7272

7373
#### Create a TabularDataset
7474

75-
You can create TabularDatasets through the SDK or by using Azure Machine Learning Studio. You can specify a time stamp from a column in the data or from the path pattern that the data is stored in to enable a time series trait. This specification allows for easy and efficient filtering by time.
75+
You can create TabularDatasets through the SDK or by using Azure Machine Learning studio.
7676

7777
Use the [`from_delimited_files()`](https://docs.microsoft.com/python/api/azureml-core/azureml.data.dataset_factory.tabulardatasetfactory?view=azure-ml-py#from-delimited-files-path--validate-true--include-path-false--infer-column-types-true--set-column-types-none--separator------header-true--partition-format-none-) method on the `TabularDatasetFactory` class to read files in .csv or .tsv format, and to create an unregistered TabularDataset. If you're reading from multiple files, results will be aggregated into one tabular representation.
7878

@@ -184,7 +184,7 @@ titanic_ds = titanic_ds.register(workspace=workspace,
184184
```
185185

186186
> [!Note]
187-
> Datasets created through Azure Machine Learning Studio are automatically registered to the workspace.
187+
> Datasets created through Azure Machine Learning studio are automatically registered to the workspace.
188188
189189
## Create datasets with Azure Open Datasets
190190

@@ -243,7 +243,6 @@ titanic_ds = titanic_ds.register(workspace = workspace,
243243
create_new_version = True)
244244
```
245245

246-
247246
## Access datasets in your script
248247

249248
Registered datasets are accessible both locally and remotely on compute clusters like the Azure Machine Learning compute. To access your registered dataset across experiments, use the following code to access your workspace and registered dataset by name. By default, the [`get_by_name()`](https://docs.microsoft.com/python/api/azureml-core/azureml.core.dataset.dataset?view=azure-ml-py#get-by-name-workspace--name--version--latest--) method on the `Dataset` class returns the latest version of the dataset that's registered with the workspace.

0 commit comments

Comments
 (0)