Skip to content

Commit 0b68fcb

Browse files
authored
Merge pull request #77339 from j-martens/patch-463
Update how-to-create-register-datasets.md
2 parents 1d4dbaa + e9f1ffb commit 0b68fcb

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

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

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,13 @@ To create and register Datasets you need:
4242
> [!Note]
4343
> Some Dataset classes (preview) have dependencies on the [azureml-dataprep](https://docs.microsoft.com/python/api/azureml-dataprep/?view=azure-ml-py) package (GA). For Linux users, these classes are supported only on the following distributions: Red Hat Enterprise Linux, Ubuntu, Fedora, and CentOS.
4444
45+
## Supported data formats
46+
47+
You can extract data from the following formats to create a dataset:
48+
+ [delimited](https://docs.microsoft.com/python/api/azureml-core/azureml.core.dataset.dataset?view=azure-ml-py#from-delimited-files-path--separator------header--promoteheadersbehavior-allfileshavesameheaders--3---encoding--fileencoding-utf8--0---quoting-false--infer-column-types-true--skip-rows-0--skip-mode--skiplinesbehavior-norows--0---comment-none--include-path-false--archive-options-none-)
49+
+ [binary](https://docs.microsoft.com/python/api/azureml-core/azureml.core.dataset.dataset?view=azure-ml-py#from-binary-files-path-)
50+
51+
4552
## Create datasets
4653

4754
### Create from local files
@@ -59,7 +66,7 @@ from azureml.core.dataset import Dataset
5966
dataset = Dataset.auto_read_files('./data/crime.csv')
6067
```
6168

62-
Alternatively, use the file-specific functions to explicitly control the parsing of your file. Currently, the Datasets SDK supports [delimited](https://docs.microsoft.com/python/api/azureml-core/azureml.core.dataset.dataset?view=azure-ml-py#from-delimited-files-path--separator------header--promoteheadersbehavior-allfileshavesameheaders--3---encoding--fileencoding-utf8--0---quoting-false--infer-column-types-true--skip-rows-0--skip-mode--skiplinesbehavior-norows--0---comment-none--include-path-false--archive-options-none-), [Excel](https://docs.microsoft.com/python/api/azureml-core/azureml.core.dataset.dataset?view=azure-ml-py#from-excel-files-path--sheet-name-none--use-column-headers-false--skip-rows-0--include-path-false--infer-column-types-true-), [Parquet](https://docs.microsoft.com/python/api/azureml-core/azureml.core.dataset.dataset?view=azure-ml-py#from-parquet-files-path--include-path-false-), [binary](https://docs.microsoft.com/python/api/azureml-core/azureml.core.dataset.dataset?view=azure-ml-py#from-binary-files-path-), and [json](https://docs.microsoft.com/python/api/azureml-core/azureml.core.dataset.dataset?view=azure-ml-py#from-json-files-path--encoding--fileencoding-utf8--0---flatten-nested-arrays-false--include-path-false-) file formats.
69+
Alternatively, use the file-specific functions to explicitly control the parsing of your file.
6370

6471
### Create from Azure Datastores
6572

0 commit comments

Comments
 (0)