Skip to content

Commit

Permalink
Fixes for notebooks 3 and 5
Browse files Browse the repository at this point in the history
  • Loading branch information
hersonoliveira committed Mar 28, 2024
1 parent 9f760c8 commit 30c8d3f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion 3 Driverless AI: AutoML.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,7 @@
"metadata": {},
"outputs": [],
"source": [
"default_baseline.summary()"
"default_baseline.summary"
]
},
{
Expand Down
8 changes: 4 additions & 4 deletions 5 MLOps: Model Deployments.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@
"metadata": {},
"outputs": [],
"source": [
"experiment = project.experiments.get(uid=\"ca85ba4a-a01a-11ee-95af-425f7a7f3fbf\")"
"experiment = project.experiments.get(uid=project.experiments.list()[0].uid)"
]
},
{
Expand Down Expand Up @@ -252,7 +252,7 @@
"metadata": {},
"outputs": [],
"source": [
"model = project.models.get(uid=\"7737d493-83cd-46b6-a7e9-3f47008d359e\")"
"model = project.models.get(uid=project.models.list()[0].uid)"
]
},
{
Expand Down Expand Up @@ -300,8 +300,8 @@
"outputs": [],
"source": [
"runtime = mlops.runtimes.scoring.list(\n",
" artifact_type=model.get_experiment().artifact_types[0],\n",
" uid=\"dai_mojo_runtime\"\n",
" artifact_type=model.get_experiment().scoring_artifact_types[0],\n",
" uid=\"python-scorer_dai_pipelines_1107\",\n",
")[0]"
]
},
Expand Down

0 comments on commit 30c8d3f

Please sign in to comment.