Skip to content

Commit aa1aa21

Browse files
committed
correct typo
Signed-off-by: M Q <[email protected]>
1 parent 933b7c2 commit aa1aa21

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

notebooks/tutorials/03_segmentation_viz_app.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -347,13 +347,13 @@
347347
"# !pip install gdown\n",
348348
"# !gdown \"https://drive.google.com/uc?id=1IwWMpbo2fd38fKIqeIdL8SKTGvkn31tK\"\n",
349349
"\n",
350-
"# Clean up the destinaton folder for the input DICOM files\n",
350+
"# Clean up the destination folder for the input DICOM files\n",
351351
"!rm -rf dcm\n",
352352
"\n",
353353
"# After downloading ai_spleen_bundle_data zip file from the web browser or using gdown,\n",
354354
"!unzip -o \"ai_spleen_seg_bundle_data.zip\"\n",
355355
"\n",
356-
"# Need to copy the model.ts file to its own clean subfolder for pacakging, to workaround an issue in the Packager\n",
356+
"# Need to copy the model.ts file to its own clean subfolder for packaging, to workaround an issue in the Packager\n",
357357
"models_folder = \"models\"\n",
358358
"!rm -rf {models_folder} && mkdir -p {models_folder}/model && cp model.ts {models_folder}/model && ls {models_folder}/model"
359359
]

notebooks/tutorials/04_monai_bundle_app.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@
358358
"# After downloading ai_spleen_bundle_data zip file from the web browser or using gdown,\n",
359359
"!unzip -o \"ai_spleen_seg_bundle_data.zip\"\n",
360360
"\n",
361-
"# Need to copy the model.ts file to its own clean subfolder for pacakging, to workaround an issue in the Packager\n",
361+
"# Need to copy the model.ts file to its own clean subfolder for packaging, to workaround an issue in the Packager\n",
362362
"models_folder = \"models\"\n",
363363
"!rm -rf {models_folder} && mkdir -p {models_folder}/model && cp model.ts {models_folder}/model && ls {models_folder}/model"
364364
]

notebooks/tutorials/05_multi_model_app.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"\n",
2020
"## Required Model File Organization\n",
2121
"\n",
22-
"- The model files in TorchScript, be it MONAI Bundle compliant or not, must each be placed in an uniquely named folder. The name of this folder becomes the name of the loaded model network in the application, and is used by the application to retieve the network via the execution context.\n",
22+
"- The model files in TorchScript, be it MONAI Bundle compliant or not, must each be placed in an uniquely named folder. The name of this folder becomes the name of the loaded model network in the application, and is used by the application to retrieve the network via the execution context.\n",
2323
"- The folders containing the individual model file must then be placed under a parent folder. The name of this folder is chosen by the application developer.\n",
2424
"- The path of the aforementioned parent folder is used to set the well-known environment variable for the model path, `HOLOSCAN_MODEL_PATH`, when the application is directly run as a program.\n",
2525
"- When the application is packaged as an MONAI Application Package (MAP), the parent folder is used as the model path, and the Packager copies all of the sub folders to the well-known `models` folder in the MAP.\n",
@@ -2134,7 +2134,7 @@
21342134
"cell_type": "markdown",
21352135
"metadata": {},
21362136
"source": [
2137-
"In the output folder are the DICOM segementation files."
2137+
"In the output folder are the DICOM segmentation files."
21382138
]
21392139
},
21402140
{

0 commit comments

Comments
 (0)