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
#Customer intent: As an experienced Python developer, I need to export my data labels and use them for machine learning tasks.
14
14
---
15
15
16
16
# Create and explore Azure Machine Learning dataset with labels
17
17
18
-
In this article, you'll learn how to export the data labels from an Azure Machine Learning data labeling project and load them into popular formats such as, a pandas dataframe for data exploration.
18
+
In this article, you learn how to export the data labels from an Azure Machine Learning data labeling project and load them into popular formats, such as a pandas dataframe for data exploration.
19
19
20
20
## What are datasets with labels
21
21
@@ -41,7 +41,7 @@ Use the **Export** button on the **Project details** page of your labeling proje
41
41
The COCO file is created in the default blob store of the Azure Machine Learning workspace in a folder within *export/coco*.
42
42
43
43
>[!NOTE]
44
-
>In object detection projects, the exported "bbox": [x,y,width,height]" values in COCO file are normalized. They are scaled to 1. Example : a bounding box at (10, 10) location, with 30 pixels width, 60 pixels height, in a 640x480 pixel image will be annotated as (0.015625. 0.02083, 0.046875, 0.125). Since the coordintes are normalized, it will show as '0.0' as "width" and "height" for all images. The actual width and height can be obtained using Python library like OpenCV or Pillow(PIL).
44
+
>In object detection projects, the exported `bbox: [x,y,width,height]` values in COCO file are normalized. They're scaled to 1. For example, a bounding box at (10, 10) location, with 30 pixels width, 60 pixels height, in a 640x480 pixel image is annotated as (0.015625. 0.02083, 0.046875, 0.125). Since the coordinates are normalized, it shows as '0.0' as "width" and "height" for all images. The actual width and height can be obtained using Python library like OpenCV or Pillow(PIL).
45
45
46
46
### Azure Machine Learning dataset
47
47
@@ -50,11 +50,11 @@ You can access the exported Azure Machine Learning dataset in the **Datasets** s
> Once you have exported your labeled data to an Azure Machine Learning dataset, you can use AutoML to build computer vision models trained on your labeled data. Learn more at [Set up AutoML to train computer vision models with Python](../how-to-auto-train-image-models.md)
53
+
> Once you export your labeled data to an Azure Machine Learning dataset, you can use AutoML to build computer vision models trained on your labeled data. Learn more at [Set up AutoML to train computer vision models with Python](../how-to-auto-train-image-models.md)
54
54
55
55
## Explore labeled datasets via pandas dataframe
56
56
57
-
Load your labeled datasets into a pandas dataframe to leverage popular open-source libraries for data exploration with the [`to_pandas_dataframe()`](/python/api/azureml-core/azureml.data.tabulardataset#to-pandas-dataframe-on-error--null---out-of-range-datetime--null--) method from the `azureml-dataprep` class.
57
+
Load your labeled datasets into a pandas dataframe to use popular open-source libraries for data exploration with the [`to_pandas_dataframe()`](/python/api/azureml-core/azureml.data.tabulardataset#to-pandas-dataframe-on-error--null---out-of-range-datetime--null--) method from the `azureml-dataprep` class.
58
58
59
59
Install the class with the following shell command:
60
60
@@ -75,12 +75,6 @@ from azureml.core import Dataset, Workspace
0 commit comments