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
Copy file name to clipboardExpand all lines: articles/machine-learning/how-to-manage-compute-sessions.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,15 +9,15 @@ ms.reviewer: lebaro
9
9
ms.service: azure-machine-learning
10
10
ms.subservice: compute
11
11
ms.topic: how-to
12
-
ms.date: 1/18/2023
12
+
ms.date: 03/10/2025
13
13
# Customer intent: As a data scientist, I want to manage the notebook and terminal sessions on my compute instance for optimal performance.
14
14
---
15
15
16
16
# Manage notebook and terminal sessions
17
17
18
18
Notebook and terminal sessions run on the compute and maintain your current working state.
19
19
20
-
When you reopen a notebook, or reconnect to a terminal session, you can reconnect to the previous session state (including command history, execution history, and defined variables). However, too many active sessions may slow down the performance of your compute. With too many active sessions, you may find your terminal or notebook cell typing lags, or terminal or notebook command execution may feel slower than expected.
20
+
When you reopen a notebook, or reconnect to a terminal session, you can reconnect to the previous session state (including command history, execution history, and defined variables). However, too many active sessions might slow down the performance of your compute. With too many active sessions, you may find your terminal or notebook cell typing lags, or terminal or notebook command execution may feel slower than expected.
21
21
22
22
Use the session management panel in Azure Machine Learning studio to help you manage your active sessions and optimize the performance of your compute instance. Navigate to this session management panel from the compute toolbar of either a terminal tab or a notebook tab.
23
23
@@ -30,7 +30,7 @@ Use the session management panel in Azure Machine Learning studio to help you ma
30
30
31
31
In the session management panel, select a linked notebook name in the notebook sessions section to reopen a notebook with its previous state.
32
32
33
-
Notebook sessions are kept active when you close a notebook tab in the Azure Machine Learning studio. So, when you reopen a notebook you'll have access to previously defined variables and execution state - in this case, you're benefitting from the active notebook session.
33
+
Notebook sessions are kept active when you close a notebook tab in the Azure Machine Learning studio. So, when you reopen a notebook you have access to previously defined variables and execution state - in this case, you're benefitting from the active notebook session.
34
34
35
35
However, keeping too many active notebook sessions can slow down the performance of your compute. So, you should use the session management panel to shut down any notebook sessions you no longer need.
#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