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/service/quickstart-run-cloud-notebook.md
+32-37Lines changed: 32 additions & 37 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,70 +15,72 @@ ms.custom: seodec18
15
15
16
16
# Quickstart: Use a cloud-based notebook server to get started with Azure Machine Learning
17
17
18
-
Create a cloud-based notebook server, then use it to run code that logs values in the Azure Machine Learning service [workspace](concept-azure-machine-learning-architecture.md). Your workspace is the foundational block in the cloud that you use to experiment, train, and deploy machine learning models with Machine Learning.
18
+
In this article, you use Azure Notebooks to run code that is logged in the Azure Machine Learning service [workspace](concept-azure-machine-learning-architecture.md). Your workspace is the foundational block in the cloud that you use to experiment, train, and deploy machine learning models with Machine Learning.
19
19
20
-
This quickstart shows how to create a cloud resource in your Azure Machine Learning workspace, configured with the Python environment necessary to run Azure Machine Learning. To use your own environment instead, see [Quickstart: Use your own notebook server to get started with Azure Machine Learning](quickstart-run-local-notebook.md).
20
+
This quickstart uses cloud resources and requires no installation. To use your own environment instead, see [Quickstart: Use your own notebook server to get started with Azure Machine Learning](quickstart-run-local-notebook.md).
21
21
22
22
In this quickstart, you take the following actions:
23
23
24
-
* Create a workstation
25
-
* Start a Jupyter Notebook server on your workstation
26
-
* Open a notebook that contains code to estimate pi and logs errors at each iteration.
27
-
* Run the notebook.
28
-
* View the logged error values in your workspace. This example shows how the workspace can help you keep track of information generated in a script.
24
+
* Connect to your workspace with Python in a Jupyter notebook. The notebook contains code to estimate pi and logs errors at each iteration.
25
+
* View the logged error values in your workspace.
29
26
30
27
If you don’t have an Azure subscription, create a free account before you begin. Try the [free or paid version of Azure Machine Learning service](https://aka.ms/AMLFree) today.
31
28
32
-
## Prerequisites
29
+
## Prerequisite
33
30
34
31
1.[Create an Azure Machine Learning workspace](setup-create-workspace.md#portal) if you don't have one.
35
32
36
-
1. Open your workspace in the [Azure portal](https://portal.azure.com/). If you're not sure how to locate your workspace in the portal, see how to [find your workspace](how-to-manage-workspace.md#view).
33
+
1. Open your workspace in the [Azure portal](https://portal.azure.com/). See how to [find your workspace](how-to-manage-workspace.md#view).
37
34
38
-
## Create a workstation
35
+
## Use your workspace
39
36
40
-
A notebook workstation gives you a cloud-based platform for Jupyter Notebooks that is preconfigured with everything you need to run Azure Machine Learning service. From your workspace, you can create this platform to get started using Jupyter notebooks.
1. On your workspace page in Azure portal, select **Notebook Workstation** on the left.
43
39
44
-
1. Select **Create Notebooks in an Azure Machine Learning workstation (Preview)**
45
40
46
-

41
+
Learn how a workspace helps you manage your machine learning scripts. In this section, you take the following steps:
42
+
43
+
* Open a notebook in Azure Notebooks.
44
+
* Run code that creates some logged values.
45
+
* View the logged values in your workspace.
47
46
48
-
1. The **Notebook Workstations** section shows a list of all the cloud-based notebook servers available in your workspace. From here you can also manage these resources and delete them when they are no longer needed.
47
+
This example shows how the workspace can help you keep track of information generated in a script.
49
48
50
-
1. Select **Add Workstation** to create a notebook workstation.
[Azure Notebooks](https://notebooks.azure.com) provides a free cloud platform for Jupyter notebooks that is preconfigured with everything you need to run Machine Learning. From your workspace, you can launch this platform to get started using your Azure Machine Learning service workspace.
53
52
54
-
1. On the Add Notebook Workstation section, give your workstation a **Compute name** and select a **Compute type**. Then select **Create**.
53
+
1. On the workspace Overview page, select **Get Started Azure Notebooks** to try your first experiment in Azure Notebooks. Azure Notebooks is a separate service that lets you run Jupyter notebooks for free in the cloud. When you use this link to the service, information about how to connect to your workspace will be added to the library you create in Azure Notebooks.
54
+
55
+

55
56
56
-

57
+
1. Sign into Azure Notebooks. Make sure you sign in with the same account you used to sign into the Azure portal. Your organization might require [administrator consent](https://notebooks.azure.com/help/signing-up/work-or-school-account/admin-consent) before you can sign in.
57
58
58
-
> [!NOTE]
59
-
> Your workstation takes approximately two minutes to create. When finished, the status updates to "Running" and links to Jupyter and JupyterLab appear.
59
+
1. After you sign in, a new tab opens and a `Clone Library` prompt appears. Cloning this library will load a set of notebooks and other files into your Azure Notebooks account. These files help you explore the capabilities of Azure Machine Learning.
60
60
61
-
## Launch Jupyter web interface
61
+
1. Uncheck **Public** so that you don't share your workspace information with others.
62
62
63
-
After your workstation is created, use the Notebook Workstations section to launch the Jupyter web interface.
63
+
1. Select **Clone**.
64
64
65
-
* Select **Jupyter** or **Jupyter Lab** in the **Launch** column for your workstation.
65
+

1. If you see that the project status is stopped, click on **Run on Free Computer** to use the free notebook server.
68
68
69
-
This starts your notebook server and opens the server homepage in a new browser tab. Your server shows sample notebooks for you to use to get started with Azure Machine Learning service.
69
+

70
70
71
71
### Run the notebook
72
72
73
-
Run a notebook that estimates pi and logs the error to your workspace.
73
+
In the list of files for this project, you see a `config.json` file. This config file contains information about the workspace you created in the Azure portal. This file allows your code to connect to and add information into your workspace.
74
74
75
75
1. Select **01.run-experiment.ipynb** to open the notebook.
76
76
77
77
1. The status area tells you to wait until the kernel has started. The message disappears once the kernel is ready.
78
78
79
79

80
80
81
-
1. After the kernel has started, run the cells one at a time using **Shift+Enter**. Or select **Cells** > **Run All** to run the entire notebook. When you see an asterisk(__*__) next to a cell, the cell is still running. After the code for that cell finishes, a number appears.
81
+
1. After the kernel has started, run the cells one at a time using **Shift+Enter**. Or select **Cells** > **Run All** to run the entire notebook. When you see an asterisk, __*__, next to a cell, the cell is still running. After the code for that cell finishes, a number appears.
82
+
83
+
1. Follow instructions in the notebook to authenticate your Azure subscription.
82
84
83
85
After you've finished running all of the cells in the notebook, you can view the logged values in your workspace.
84
86
@@ -102,18 +104,11 @@ Because the code to approximate pi uses random values, your plots will show diff
102
104
103
105
You can also keep the resource group but delete a single workspace. Display the workspace properties and select **Delete**.
104
106
105
-
106
107
## Next steps
107
108
108
-
In this quickstart, you completed the following:
109
-
110
-
* Create a workstation
111
-
* Start a Jupyter Notebook server on your workstation
112
-
* Open a notebook that contains code to estimate pi and logs errors at each iteration.
113
-
* Run the notebook.
114
-
* View the logged error values in your workspace. This example shows how the workspace can help you keep track of information generated in a script.
109
+
You created the necessary resources to experiment with and deploy models. You also ran some code in a notebook. And you explored the run history from that code in your workspace in the cloud.
115
110
116
111
For an in-depth workflow experience, follow Machine Learning tutorials to train and deploy a model:
117
112
118
113
> [!div class="nextstepaction"]
119
-
> [Tutorial: Train an image classification model](tutorial-train-models-with-aml.md)
114
+
> [Tutorial: Train an image classification model](tutorial-train-models-with-aml.md)
Copy file name to clipboardExpand all lines: articles/service-fabric/service-fabric-cluster-fabric-settings.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -403,11 +403,14 @@ The following is a list of Fabric settings that you can customize, organized by
403
403
|AzureStorageMaxWorkerThreads | Int, default is 25 |Dynamic|The maximum number of worker threads in parallel. |
404
404
|AzureStorageOperationTimeout | Time in seconds, default is 6000 |Dynamic|Specify timespan in seconds. Time out for xstore operation to complete. |
405
405
|CleanupApplicationPackageOnProvisionSuccess|bool, default is FALSE |Dynamic|This configuration enables or disables the automatic cleanup of application package on successful provision. |
406
+
|CleanupUnusedApplicationTypes|Bool, default is FALSE |Dynamic|This configuration if enabled, allows to automatically unregister unused application type versions skipping the latest three unused versions, thereby trimming the disk space occupied by image store. The automatic cleanup will be triggered at the end of successful provision for that specific app type and also runs periodically once a day for all the application types. Number of unused versions to skip is configurable using parameter "MaxUnusedAppTypeVersionsToKeep". |
406
407
|DisableChecksumValidation | Bool, default is false |Static| This configuration allows us to enable or disable checksum validation during application provisioning. |
407
408
|DisableServerSideCopy | Bool, default is false |Static|This configuration enables or disables server-side copy of application package on the ImageStore during application provisioning. |
408
409
|ImageCachingEnabled | Bool, default is true |Static|This configuration allows us to enable or disable caching. |
409
410
|ImageStoreConnectionString |SecureString |Static|Connection string to the Root for ImageStore. |
410
411
|ImageStoreMinimumTransferBPS | Int, default is 1024 |Dynamic|The minimum transfer rate between the cluster and ImageStore. This value is used to determine the timeout when accessing the external ImageStore. Change this value only if the latency between the cluster and ImageStore is high to allow more time for the cluster to download from the external ImageStore. |
412
+
|MaxUnusedAppTypeVersionsToKeep | Int, default is 3 |Dynamic|This configuration defines the number of unused application type versions to be skipped for cleanup. This parameter is applicable only if parameter CleanupUnusedApplicationTypes is enabled. |
413
+
411
414
412
415
## MetricActivityThresholds
413
416
|**Parameter**|**Allowed Values**|**Upgrade Policy**|**Guidance or Short Description**|
0 commit comments