Core concepts¶
This document introduces the basic concepts of the MONAI Deploy App SDK. If you are eager to try out the SDK in practice, you can start with the tutorial. After the tutorial, you can return to this document to learn more about how MONAI Deploy App SDK works.
As described in the Architecture of MONAI Deploy App SDK, an application is implemented by subclassing Application class.
Application represents a workflow as a Graph and the graph handles Operators which are computational tasks.
To develop and deploy your MONAI App, you can follow the steps below (click a node to see the detail):
1. Developing Application¶
First, you will need to design the workflow of your application that defines Operators (tasks) and flows among them. Once the workflow is designed, you can start implementing operator classes for those that you cannot use existing operators as they are. Then implement an Application class to make a workflow graph with the operators.
You can execute and debug your application locally in a Jupyter notebook or through CLI.
2. Packaging, Local-Running, and Deploying Application Package¶
After your application is tested and verified well and you feel you made a great application :), it’s time to package your application, test locally, and deploy it to the remote server.