Skip to content

Commit da10533

Browse files
committed
added mlflow tutorial
1 parent 18ef5ab commit da10533

File tree

2 files changed

+14
-13
lines changed

2 files changed

+14
-13
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ For more information look at Tutorials
9999
5. [Creating your own data loaders](/notebooks/Indices_for_DataLoader.ipynb)
100100
6. [Working with configs](/notebooks/How_to_work_with_configs.ipynb)
101101
7. [Benchmarks](/notebooks/benchmarks.ipynb)
102+
8. [Integration with Mlflow](/notebooks/Integration_with_mlflow.ipynb)
102103

103104
## Library Structure
104105

notebooks/Integration_with_mlflow.ipynb

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
"cells": [
33
{
44
"cell_type": "markdown",
5-
"id": "e81c847e",
5+
"id": "92671f50",
66
"metadata": {},
77
"source": [
88
"# Integration with mlflow"
99
]
1010
},
1111
{
1212
"cell_type": "markdown",
13-
"id": "b6aa588c",
13+
"id": "b9b0b4ea",
1414
"metadata": {},
1515
"source": [
1616
"### Summary: \n",
@@ -20,7 +20,7 @@
2020
{
2121
"cell_type": "code",
2222
"execution_count": 3,
23-
"id": "35d5f728",
23+
"id": "c600ab02",
2424
"metadata": {
2525
"execution": {
2626
"iopub.execute_input": "2024-08-21T10:36:36.576223Z",
@@ -44,7 +44,7 @@
4444
{
4545
"cell_type": "code",
4646
"execution_count": 6,
47-
"id": "d82a914c",
47+
"id": "ec976b10",
4848
"metadata": {
4949
"execution": {
5050
"iopub.execute_input": "2024-08-21T10:37:07.692657Z",
@@ -85,7 +85,7 @@
8585
{
8686
"cell_type": "code",
8787
"execution_count": 7,
88-
"id": "3faa80be",
88+
"id": "b848621b",
8989
"metadata": {
9090
"execution": {
9191
"iopub.execute_input": "2024-08-21T10:39:13.803082Z",
@@ -104,7 +104,7 @@
104104
{
105105
"cell_type": "code",
106106
"execution_count": 8,
107-
"id": "c0c84614",
107+
"id": "3d9ad6a5",
108108
"metadata": {
109109
"execution": {
110110
"iopub.execute_input": "2024-08-21T10:55:27.607989Z",
@@ -120,10 +120,10 @@
120120
"\n",
121121
"runner.cfg[\"logging\"][\"use_mlflow\"] = True # making flag True to use mlflow\n",
122122
"runner.cfg[\"logging\"][\"mlflow\"] = {\n",
123-
" \"MLFLOW_TRACKING_URI\": \"https://ml-flow.msk.bd-cloud.mts.ru/\", # uri of \n",
123+
" \"MLFLOW_TRACKING_URI\": \"<mlflow_url>\",\n",
124124
" \"MLFLOW_TRACKING_USERNAME\": \"username\",\n",
125125
" \"MLFLOW_TRACKING_PASSWORD\": \"password\",\n",
126-
" \"MLFLOW_S3_ENDPOINT_URL\": \"https://s3.mts-corp.ru\", # to save artifacts\n",
126+
" \"MLFLOW_S3_ENDPOINT_URL\": \"<endpoint_url>\", # to save artifacts\n",
127127
" \"AWS_ACCESS_KEY_ID\": \"access_key\", # to save artifacts\n",
128128
" \"AWS_SECRET_ACCESS_KEY\": \"secret_access_key\", # to save artifacts\n",
129129
" \"MLFLOW_TRACKING_INSECURE_TLS\": \"true\", # to ignore the TLS certificate verification\n",
@@ -138,7 +138,7 @@
138138
{
139139
"cell_type": "code",
140140
"execution_count": 9,
141-
"id": "f154a32f",
141+
"id": "995d9aa1",
142142
"metadata": {
143143
"execution": {
144144
"iopub.execute_input": "2024-08-21T10:55:36.670982Z",
@@ -185,15 +185,15 @@
185185
},
186186
{
187187
"cell_type": "markdown",
188-
"id": "c835b041",
188+
"id": "d58837ac",
189189
"metadata": {},
190190
"source": [
191191
"### Let's see the results on Mlflow tracker"
192192
]
193193
},
194194
{
195195
"cell_type": "markdown",
196-
"id": "c67c3798",
196+
"id": "f8eccc2e",
197197
"metadata": {
198198
"execution": {
199199
"iopub.execute_input": "2024-08-21T11:08:43.663318Z",
@@ -209,7 +209,7 @@
209209
},
210210
{
211211
"cell_type": "markdown",
212-
"id": "cbac9ca5",
212+
"id": "2b17c3f5",
213213
"metadata": {},
214214
"source": [
215215
"### Success!"
@@ -218,7 +218,7 @@
218218
{
219219
"cell_type": "code",
220220
"execution_count": null,
221-
"id": "686924be",
221+
"id": "1d81e647",
222222
"metadata": {},
223223
"outputs": [],
224224
"source": []

0 commit comments

Comments
 (0)