From 72f9baeb070c4571a5c2bc780cac40b93fabbda6 Mon Sep 17 00:00:00 2001 From: Gigon Bae Date: Tue, 23 Nov 2021 16:41:28 -0800 Subject: [PATCH 1/2] Update documents for v0.2 Signed-off-by: Gigon Bae --- .../deploying_to_the_remote_server.md | 10 +++++++++ .../tutorials/04_mis_tutorial.md | 21 +++++++++++++++++++ .../tutorials/05_full_tutorial.md | 21 +++++++++++++++++++ .../source/getting_started/tutorials/index.md | 2 ++ docs/source/release_notes/index.md | 2 ++ 5 files changed, 56 insertions(+) create mode 100644 docs/source/getting_started/tutorials/04_mis_tutorial.md create mode 100644 docs/source/getting_started/tutorials/05_full_tutorial.md diff --git a/docs/source/developing_with_sdk/deploying_to_the_remote_server.md b/docs/source/developing_with_sdk/deploying_to_the_remote_server.md index d477ff06..e6b94514 100644 --- a/docs/source/developing_with_sdk/deploying_to_the_remote_server.md +++ b/docs/source/developing_with_sdk/deploying_to_the_remote_server.md @@ -1 +1,11 @@ # Deploying to the remote server (coming soon) + +As of v0.2.0, the SDK is not yet ready to deploy to the remote server (MONAI Deploy App Server). +We are actively working on it. + +Meanwhile, you can use the following tutorial to deploy your model with the RESTful Inference Service -- [MONAI Inference Service (MIS)](https://github.com/Project-MONAI/monai-deploy-app-server/blob/main/components/inference-service/README.md). + +Please refer to the following tutorial for more details: + +- 4) Deploying Segmentation app with MONAI Inference Service (MIS) +- 5) Building and deploying Segmentation app with MONAI Inference Service (MIS) diff --git a/docs/source/getting_started/tutorials/04_mis_tutorial.md b/docs/source/getting_started/tutorials/04_mis_tutorial.md new file mode 100644 index 00000000..766eacbc --- /dev/null +++ b/docs/source/getting_started/tutorials/04_mis_tutorial.md @@ -0,0 +1,21 @@ +# 4) Deploying Segmentation app with MONAI Inference Service (MIS) + +## Setup + +The environment from the previous section (**Creating a Segmentation app**) is required to run this example. + +## Executing from Jupyter Notebook + +```{toctree} +:maxdepth: 4 + +../../notebooks/tutorials/04_mis_tutorial.ipynb +``` + +```{raw} html +

+ + Download 04_mis_tutorial.ipynb + +

+``` diff --git a/docs/source/getting_started/tutorials/05_full_tutorial.md b/docs/source/getting_started/tutorials/05_full_tutorial.md new file mode 100644 index 00000000..a89b2a1e --- /dev/null +++ b/docs/source/getting_started/tutorials/05_full_tutorial.md @@ -0,0 +1,21 @@ +# 5) Building and deploying Segmentation app with MONAI Inference Service (MIS) + +## Setup + +The environment from the previous section (**Creating a Segmentation app**) is required to run this example. + +## Executing from Jupyter Notebook + +```{toctree} +:maxdepth: 4 + +../../notebooks/tutorials/05_full_tutorial.ipynb +``` + +```{raw} html +

+ + Download 05_full_tutorial.ipynb + +

+``` diff --git a/docs/source/getting_started/tutorials/index.md b/docs/source/getting_started/tutorials/index.md index cca9f8f7..d3a292ee 100644 --- a/docs/source/getting_started/tutorials/index.md +++ b/docs/source/getting_started/tutorials/index.md @@ -7,4 +7,6 @@ 01_simple_app 02_mednist_app 03_segmentation_app +04_mis_tutorial +05_full_tutorial ``` diff --git a/docs/source/release_notes/index.md b/docs/source/release_notes/index.md index ffb2b402..16d42e05 100644 --- a/docs/source/release_notes/index.md +++ b/docs/source/release_notes/index.md @@ -12,6 +12,8 @@ :maxdepth: 1 v0.2.0 +``` + ## Version 0.1 ```{toctree} From 86acaa0191b32b25a40564e18d5ce9d81ec153be Mon Sep 17 00:00:00 2001 From: Gigon Bae Date: Tue, 23 Nov 2021 16:42:26 -0800 Subject: [PATCH 2/2] =?UTF-8?q?Bump=20version:=200.2.0a1=20=E2=86=92=200.2?= =?UTF-8?q?.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Gigon Bae --- .bumpversion.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 29a43d3c..b0313a7b 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.0a1 +current_version = 0.2.0 parse = (?P\d+)\.(?P\d+)\.(?P\d+)((?Pa|b|rc)(?P\d+))? serialize = {major}.{minor}.{patch}{release}{build}