Skip to content

Commit 7223606

Browse files
Merge pull request #219011 from sdgilley/patch-34
Update how-to-use-labeled-dataset.md
2 parents d12d57d + 4ccc6f3 commit 7223606

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

articles/machine-learning/v1/how-to-use-labeled-dataset.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,7 @@ pip install azureml-dataprep
6363
```
6464

6565
In the following code, the `animal_labels` dataset is the output from a labeling project previously saved to the workspace.
66-
The exported dataset is a [TabularDataset](/python/api/azureml-core/azureml.data.tabular_dataset.tabulardataset). If you plan to use [download()](/python/api/azureml-core/azureml.data.tabulardataset#azureml-data-tabulardataset-download) or [mount()](/python/api/azureml-core/azureml.data.tabulardataset#azureml-data-tabulardataset-mount) methods, be sure to set the parameter `stream column ='image_url'`.
67-
68-
> [!NOTE]
69-
> The public preview methods download() and mount() are [experimental](/python/api/overview/azure/ml/#stable-vs-experimental) preview features, and may change at any time.
66+
The exported dataset is a [TabularDataset](/python/api/azureml-core/azureml.data.tabular_dataset.tabulardataset).
7067

7168
[!INCLUDE [sdk v1](../../../includes/machine-learning-sdk-v1.md)]
7269

@@ -81,7 +78,7 @@ animal_pd = animal_labels.to_pandas_dataframe()
8178
import matplotlib.pyplot as plt
8279
import matplotlib.image as mpimg
8380

84-
#read images from downloaded path
81+
#read images from dataset
8582
img = mpimg.imread(animal_pd['image_url'].iloc(0).open())
8683
imgplot = plt.imshow(img)
8784
```

0 commit comments

Comments
 (0)