Skip to content

Commit 557e7da

Browse files
committed
Edits
1 parent 2297c12 commit 557e7da

File tree

1 file changed

+39
-42
lines changed

1 file changed

+39
-42
lines changed

experiment_management/unet_segmentation_3d_ignite_clearml.ipynb

Lines changed: 39 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -28,59 +28,25 @@
2828
},
2929
{
3030
"cell_type": "markdown",
31-
"metadata": {
32-
"id": "VUefxTkGGTAc"
33-
},
3431
"source": [
3532
"## Setup environment\n",
3633
"\n",
3734
"`clearml` comes as part of the `monai[all]` installation. For more information about integrating ClearML into your Monai code, see [here](https://clear.ml/docs/latest/docs/integrations/monai). For more information about using ClearML (experiment management, data management, pipelines, model serving, and more), see [ClearML's official documentation](https://clear.ml/docs/latest/docs/)."
38-
]
35+
],
36+
"metadata": {
37+
"collapsed": false
38+
}
3939
},
4040
{
4141
"cell_type": "code",
4242
"execution_count": null,
43-
"metadata": {
44-
"id": "OUMIxMjvGTAd"
45-
},
4643
"outputs": [],
4744
"source": [
4845
"!python -c \"import monai\" || pip install -q \"monai-weekly[ignite, nibabel, tensorboard, clearml]\""
49-
]
50-
},
51-
{
52-
"cell_type": "markdown",
53-
"metadata": {
54-
"id": "s-ORDi_qZTYM"
55-
},
56-
"source": [
57-
"### Set up ClearML ⚓\n",
58-
"\n",
59-
"1. To keep track of your experiments and/or data, ClearML needs to communicate to a server. You have 2 server options:\n",
60-
"\n",
61-
" * Sign up for free to the [ClearML Hosted Service](https://app.clear.ml/)\n",
62-
" * Set up your own server, see [here](https://clear.ml/docs/latest/docs/deploying_clearml/clearml_server).\n",
63-
"\n",
64-
"\n",
65-
"\n",
66-
"2. Add you ClearML credentials below. ClearML will use these credentials to connect to your server (see instructions for generating credentials [here](https://clear.ml/docs/latest/docs/getting_started/ds/ds_first_steps/#jupyter-notebook))."
67-
]
68-
},
69-
{
70-
"cell_type": "code",
71-
"execution_count": null,
46+
],
7247
"metadata": {
73-
"id": "ofvwifHWG0SK"
74-
},
75-
"outputs": [],
76-
"source": [
77-
"# clearml credentials\n",
78-
"%env CLEARML_WEB_HOST=''\n",
79-
"%env CLEARML_API_HOST=''\n",
80-
"%env CLEARML_FILES_HOST=''\n",
81-
"%env CLEARML_API_ACCESS_KEY=''\n",
82-
"%env CLEARML_API_SECRET_KEY=''\n"
83-
]
48+
"collapsed": false
49+
}
8450
},
8551
{
8652
"cell_type": "markdown",
@@ -102,7 +68,6 @@
10268
"import glob\n",
10369
"import logging\n",
10470
"import os\n",
105-
"from pathlib import Path\n",
10671
"import shutil\n",
10772
"import sys\n",
10873
"import tempfile\n",
@@ -136,6 +101,38 @@
136101
"print_config()"
137102
]
138103
},
104+
{
105+
"cell_type": "markdown",
106+
"source": [
107+
"## Set up ClearML ⚓\n",
108+
"\n",
109+
"1. To keep track of your experiments and/or data, ClearML needs to communicate to a server. You have 2 server options:\n",
110+
"\n",
111+
" * Sign up for free to the [ClearML Hosted Service](https://app.clear.ml/)\n",
112+
" * Set up your own server, see [here](https://clear.ml/docs/latest/docs/deploying_clearml/clearml_server).\n",
113+
"\n",
114+
"2. Add you ClearML credentials below. ClearML will use these credentials to connect to your server (see instructions for generating credentials [here](https://clear.ml/docs/latest/docs/getting_started/ds/ds_first_steps/#jupyter-notebook))."
115+
],
116+
"metadata": {
117+
"collapsed": false
118+
}
119+
},
120+
{
121+
"cell_type": "code",
122+
"execution_count": null,
123+
"outputs": [],
124+
"source": [
125+
"# clearml credentials\n",
126+
"%env CLEARML_WEB_HOST=''\n",
127+
"%env CLEARML_API_HOST=''\n",
128+
"%env CLEARML_FILES_HOST=''\n",
129+
"%env CLEARML_API_ACCESS_KEY=''\n",
130+
"%env CLEARML_API_SECRET_KEY=''\n"
131+
],
132+
"metadata": {
133+
"collapsed": false
134+
}
135+
},
139136
{
140137
"cell_type": "markdown",
141138
"metadata": {

0 commit comments

Comments
 (0)