You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: MLflow/MLflow_example.ipynb
+24-3Lines changed: 24 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@
11
11
},
12
12
{
13
13
"cell_type": "code",
14
-
"execution_count": 1,
14
+
"execution_count": 3,
15
15
"metadata": {},
16
16
"outputs": [],
17
17
"source": [
@@ -30,14 +30,35 @@
30
30
"## Set up connection "
31
31
]
32
32
},
33
+
{
34
+
"cell_type": "markdown",
35
+
"metadata": {},
36
+
"source": [
37
+
"ML Flow helps track experiments and runs within a particular data science project. As per MLFlow tracking conventions :\n",
38
+
"\n",
39
+
"- An **experiment** corresponds to a particular version of code or model. Each experiment will be tracked as different commits within git.\n",
40
+
"\n",
41
+
"- A **run** corresponds to a different hyper parameter setting or different feature engineering within same experiment. Runs are tracked within each ML Flow experiment\n",
42
+
"\n",
43
+
"1) Set up the ML Flow client and point it to our current MLFlow deployment : http://mlflow-server-route-aiops-prod-prometheus-scrape.cloud.paas.psi.redhat.com/#/\n",
44
+
"\n",
45
+
"2) Start a new MLflow run, setting it as the active run under which metrics and parameters will be logged\n",
46
+
"\n",
47
+
"3) Set an experiment for tracking a particular project \n",
48
+
"\n",
49
+
"4) Each run corresponds to a training cycle. Associate run name to version of code (experiment)\n",
50
+
"\n",
51
+
"5) Start a run"
52
+
]
53
+
},
33
54
{
34
55
"cell_type": "markdown",
35
56
"metadata": {},
36
57
"source": [
37
58
"### Connection configurations set by the user:\n",
38
59
"\n",
39
60
"* **MLFLOW_URI**: route to deployment\n",
40
-
"* **EXPERIMENT_NAME**: Name for entire set of experiments you want to compare. Think of this as the folder this run will live in. \n",
61
+
"* **EXPERIMENT_NAME**: Name for entire set of experiments you want to compare. Think of this as the folder this run will live in or a particular version of the code or model.\n",
41
62
"* **RUN_NAME**: custom name for this specific run"
0 commit comments