Skip to content

Commit

Permalink
correct typo
Browse files Browse the repository at this point in the history
Signed-off-by: M Q <mingmelvinq@nvidia.com>
  • Loading branch information
MMelQin committed Jan 29, 2025
1 parent 933b7c2 commit aa1aa21
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions notebooks/tutorials/03_segmentation_viz_app.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -347,13 +347,13 @@
"# !pip install gdown\n",
"# !gdown \"https://drive.google.com/uc?id=1IwWMpbo2fd38fKIqeIdL8SKTGvkn31tK\"\n",
"\n",
"# Clean up the destinaton folder for the input DICOM files\n",
"# Clean up the destination folder for the input DICOM files\n",
"!rm -rf dcm\n",
"\n",
"# After downloading ai_spleen_bundle_data zip file from the web browser or using gdown,\n",
"!unzip -o \"ai_spleen_seg_bundle_data.zip\"\n",
"\n",
"# Need to copy the model.ts file to its own clean subfolder for pacakging, to workaround an issue in the Packager\n",
"# Need to copy the model.ts file to its own clean subfolder for packaging, to workaround an issue in the Packager\n",
"models_folder = \"models\"\n",
"!rm -rf {models_folder} && mkdir -p {models_folder}/model && cp model.ts {models_folder}/model && ls {models_folder}/model"
]
Expand Down
2 changes: 1 addition & 1 deletion notebooks/tutorials/04_monai_bundle_app.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@
"# After downloading ai_spleen_bundle_data zip file from the web browser or using gdown,\n",
"!unzip -o \"ai_spleen_seg_bundle_data.zip\"\n",
"\n",
"# Need to copy the model.ts file to its own clean subfolder for pacakging, to workaround an issue in the Packager\n",
"# Need to copy the model.ts file to its own clean subfolder for packaging, to workaround an issue in the Packager\n",
"models_folder = \"models\"\n",
"!rm -rf {models_folder} && mkdir -p {models_folder}/model && cp model.ts {models_folder}/model && ls {models_folder}/model"
]
Expand Down
4 changes: 2 additions & 2 deletions notebooks/tutorials/05_multi_model_app.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"\n",
"## Required Model File Organization\n",
"\n",
"- 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",
"- 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",
"- 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",
"- 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",
"- 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",
Expand Down Expand Up @@ -2134,7 +2134,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"In the output folder are the DICOM segementation files."
"In the output folder are the DICOM segmentation files."
]
},
{
Expand Down

0 comments on commit aa1aa21

Please sign in to comment.