Skip to content

Commit 8c99669

Browse files
committed
Fix detected formatting bugs . . .
1 parent 510c149 commit 8c99669

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

articles/machine-learning/how-to-create-data-assets.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -168,10 +168,10 @@ A Folder (`uri_folder`) type data asset points to a *folder* in a storage resour
168168

169169
Copy-and-paste the following code into a new YAML file. Be sure to update the `<>` placeholders with the
170170

171-
- name of your data asset
172-
- the version
173-
- description
174-
- path to a folder on a supported location
171+
- Name of your data asset
172+
- The version
173+
- Description
174+
- Path to a folder on a supported location
175175

176176
```yaml
177177
$schema: https://azuremlschemas.azureedge.net/latest/data.schema.json
@@ -548,7 +548,7 @@ Not available.
548548
>
549549
> Therefore, the *immutability* of data assets provides a level of protection when working in a team creating production workloads.
550550
551-
For a mistakenly-created data asset - for example, with an incorrect name, type or path - Azure Machine Learning offers solutions to handle the situation without the negative consequences of deletion:
551+
For a mistakenly created data asset - for example, with an incorrect name, type or path - Azure Machine Learning offers solutions to handle the situation without the negative consequences of deletion:
552552

553553
|*I want to delete this data asset because...* | Solution |
554554
|---------|---------|
@@ -562,11 +562,11 @@ For a mistakenly-created data asset - for example, with an incorrect name, type
562562

563563
Archiving a data asset hides it by default from both list queries (for example, in the CLI `az ml data list`) and the data asset listing in the Studio UI. You can still continue to reference and use an archived data asset in your workflows. You can archive either:
564564

565-
- *all versions* of the data asset under a given name
565+
- *All versions* of the data asset under a given name
566566

567567
or
568568

569-
- a specific data asset version
569+
- A specific data asset version
570570

571571
#### Archive all versions of a data asset
572572

@@ -737,9 +737,9 @@ ml_client.data.restore(name="<DATA ASSET NAME>", version="<VERSION TO ARCHIVE>")
737737

738738
Data lineage is broadly understood as the lifecycle that spans the origin of the data, and where it moves over time across storage. Different kinds of backwards-looking scenarios use it, for example
739739

740-
- troubleshooting
741-
- tracing root causes in ML pipelines
742-
- debugging
740+
- Troubleshooting
741+
- Tracing root causes in ML pipelines
742+
- Debugging
743743

744744
Data quality analysis, compliance and “what if” scenarios also use lineage. Lineage is represented visually to show data moving from source to destination, and additionally covers data transformations. Given the complexity of most enterprise data environments, these views can become hard to understand without consolidation or masking of peripheral data points.
745745

@@ -869,9 +869,9 @@ ml_client.data.create_or_update(my_data)
869869

870870
Execute the following command in the Azure CLI. Be sure to update the `<>` placeholders with the
871871

872-
- name of your data asset
873-
- the version
874-
- key-value pair for the tag
872+
- Name of your data asset
873+
- The version
874+
- Key-value pair for the tag
875875

876876
```azurecli
877877
az ml data update --name <DATA ASSET NAME> --version <VERSION> --set tags.<KEY>=<VALUE>

0 commit comments

Comments
 (0)