Skip to content

Commit

Permalink
notebook#1: Update mlops package and deploy command
Browse files Browse the repository at this point in the history
  • Loading branch information
hersonoliveira committed Dec 3, 2024
1 parent dbe1024 commit 1c8a028
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion 1 H2O AI Cloud: Quickstart.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,16 @@
"See the `2 Managing AI Engines` tutorial for more details on how to use and interact with **Engine Manager** for creating and managing your AI Engines."
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "246660ed",
"metadata": {},
"outputs": [],
"source": [
"!pip install 'h2o-mlops>=1.1.2'"
]
},
{
"cell_type": "code",
"execution_count": null,
Expand Down Expand Up @@ -308,10 +318,13 @@
"metadata": {},
"outputs": [],
"source": [
"from h2o_mlops.options import SecurityOptions\n",
"\n",
"mlops_churn_deployment = mlops_environment.deployments.create_single(\n",
" name=mlops_churn_model.name,\n",
" model=mlops_churn_model,\n",
" scoring_runtime=mlops_scoring_runtime\n",
" scoring_runtime=mlops_scoring_runtime,\n",
" security_options=SecurityOptions(disabled_security=True),\n",
")"
]
},
Expand Down

0 comments on commit 1c8a028

Please sign in to comment.