Skip to content

Commit

Permalink
Update model_lifecycle_action.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
hd883 committed Apr 26, 2024
1 parent 855fe52 commit 599f9e4
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions docs/mlops/model_lifecycle_action.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@ Models Lifecycle Actions

Users can trigger the actions to register, deploy, promote, undeploy and re-register models from the Model Management Dashboard. The actions are executed in Sparkflows MLOps server. 

**Configure MLflow in Admin Console:**
**Configure in Admin Console:**

- Users can now see the additional MLOps Actions in the model page.
- Users can now see the additional MLOps Actions in the model page. Configure the properties to leverage MLOps capabilities.

**Register Model:** 
- This action will register and log the model to MLflow server. This copies the model from Sparkflows model repo to MLflow model storage which most often is a cloud store like S3.
- This action will register and log the model to MLflow server. This registers the model residing in Sparkflows model repo to MLflow model storage which most often is a cloud store like S3.

**Deploy Model:**

- Once the model is registered with MLflow, it can be deployed by choosing the deploy model option. This action would give an end point which can be used to perform online scoring. The details of the same using python and curl command can be seen by clicking on the View icon in the Actions list.
- Once the model is registered with MLflow, it can be deployed by choosing the deploy model option. Once the model is deployed, user gets an end point which can be used to perform online scoring. The details of the same using python and curl command can be seen by clicking on the View icon in the Actions list.

**Undeploy Model:**

Expand All @@ -22,3 +22,7 @@ Users can trigger the actions to register, deploy, promote, undeploy and re-regi
**Promote Model:**

- A model can be promoted and demoted among one of these stages using this option - Staging, Production, Archived, None. The default stage model is registered is “None”.

**Champion-Challenger Model:**

- Multiple Challenger models can be attached to the Champion(deployed in production) model to be evaluated over a period of time. When a scoring request comes to the Champion model, the request is serviced by the Champion model and the request is re-routed to the Challenger models as well. The Challenger models can be evaluated over a period of time and if they perform better than the Champion model, then the Challenger model can be deployed to production and the current Champion model can be Undeployed.

0 comments on commit 599f9e4

Please sign in to comment.