Skip to content

Commit

Permalink
[Docs] Fix 05-model-monitoring.ipynb (#5700)
Browse files Browse the repository at this point in the history
  • Loading branch information
davesh0812 committed Jun 3, 2024
1 parent af02b48 commit 088414f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/tutorials/05-model-monitoring.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@
"model_name = \"RandomForestClassifier\"\n",
"project.log_model(\n",
" model_name,\n",
" model_file=\"model.pkl\",\n",
" model_file=\"_static/model.pkl\",\n",
" training_set=train_set,\n",
" framework=\"sklearn\",\n",
")"
Expand Down Expand Up @@ -537,7 +537,7 @@
"source": [
"# register the first app named \"demo_app\"\n",
"my_app = project.set_model_monitoring_function(\n",
" func=\"demo_app.py\",\n",
" func=\"_static/demo_app.py\",\n",
" application_class=\"DemoMonitoringApp\",\n",
" name=\"myApp\",\n",
")\n",
Expand All @@ -552,7 +552,7 @@
"source": [
"### Evidently app\n",
"\n",
"First download {download}`evicently_app <./_static/evicently_app>`."
"First download {download}`evidently_app <./_static/evicently_app>`."
]
},
{
Expand Down Expand Up @@ -592,7 +592,7 @@
"source": [
"# register the second app named \"evidently_app\"\n",
"my_evidently_app = project.set_model_monitoring_function(\n",
" func=\"evidently_app.py\",\n",
" func=\"_static/evidently_app.py\",\n",
" image=\"mlrun/mlrun\",\n",
" requirements=[\n",
" \"evidently~=0.4.3\",\n",
Expand Down

0 comments on commit 088414f

Please sign in to comment.