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: getting-started-tutorial/getting-started-tutorial.ipynb
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@
16
16
"## Overview\n",
17
17
"\n",
18
18
"This tutorial is designed to demonstrate some of the main capabilities of the Iguazio Data Science Platform (**\"the platform\"**).\n",
19
-
"The tutorial walks yo through a basic machine-learning (ML) workflow, which includes the following steps; before running the steps, ensure that the required [prerequisites](#gs-prerequisites) are met:\n",
19
+
"The tutorial walks you through a basic machine-learning (ML) workflow, which includes the following steps; before running the steps, ensure that the required [prerequisites](#gs-prerequisites) are met:\n",
20
20
"\n",
21
21
"1. [Create and configure a new project](#gs-step-project-create-n-config)\n",
22
22
"2. [Ingest a data set](#gs-step-ingest-data)\n",
@@ -1331,7 +1331,7 @@
1331
1331
"metadata": {},
1332
1332
"source": [
1333
1333
"<a id=\"gs-explore-data-w-mlrun-func\"></a>\n",
1334
-
"### Explore the Data with an MLRun Markeplace Function\n",
1334
+
"### Explore the Data with an MLRun Marketplace Function\n",
1335
1335
"\n",
1336
1336
"You can perform further data exploration by leveraging **the MLRun functions marketplace** (a.k.a. \"the MLRun functions hub\").\n",
1337
1337
"This marketplace is a centralized location for open-source contributions of function components that are commonly used in machine-learning development.\n",
@@ -1758,7 +1758,7 @@
1758
1758
"## Step 4: Run Model Training at Scale\n",
1759
1759
"\n",
1760
1760
"It's time to train your model.\n",
1761
-
"Start by adding a training project function that uses the [`sklearn_classifier` MLRun marketplace function](https://github.com/mlrun/functions/tree/master/sklearn_classifier) to train three scikit-learn models; (you can use this function to train any sciki-learn model).\n",
1761
+
"Start by adding a training project function that uses the [`sklearn_classifier` MLRun marketplace function](https://github.com/mlrun/functions/tree/master/sklearn_classifier) to train three scikit-learn models; (you can use this function to train any scikit-learn model).\n",
1762
1762
"Then, use an MLRun task to run your function in order to train and evaluate the models and select the optimal model."
1763
1763
]
1764
1764
},
@@ -1802,14 +1802,14 @@
1802
1802
"The returned run object is stored in a `train_run` variable.\n",
1803
1803
"\n",
1804
1804
"The code uses the `with_hyper_params` task method, which enables running multiple iterations of the same task with different parameter combinations, comparing the results, and selecting the optimal combination based on the specified selection criteria.\n",
1805
-
"In this example, there's a single models parameter with different values (model names) so as to compare multiple models; the model with the most accurate training results is selected as the optimal model.\n",
1805
+
"In this example, there's a single `models` parameter with different values (model names) so as to compare multiple models; the model with the most accurate training results is selected as the optimal model.\n",
1806
1806
"The `with_hyper_params` method receives the following parameters\n",
1807
1807
"\n",
1808
1808
"- **`hyperparams`** — a dictionary of parameter names and parameter-values lists.\n",
1809
1809
" The example defines a single hyperparameter named `model_pkg_class`, and sets its value to a `models` variable that contains a list of three scikit-learn models to train and evaluate. \n",
1810
-
"- **`selector`** — a string of the format `'<min/max>.<validation criterion>'`, which defines a selection criteria for selecting the winning run iteration.\n",
1810
+
"- **`selector`** — a string of the format `'<min/max>.<validation criterion>'`, which defines a selection criterion for selecting the winning run iteration.\n",
1811
1811
" For example, `\"max.accuracy\"` selects the iteration with the most accurate results while `\"min.loss\"` selects the iteration with minimum loss.\n",
1812
-
" The examples uses the `max.accuracy` selector to select the model with the most accurate training results."
1812
+
" The example uses the `max.accuracy` selector to select the model with the most accurate training results."
1813
1813
]
1814
1814
},
1815
1815
{
@@ -2634,7 +2634,7 @@
2634
2634
"The workflow file has two parts — initialization of the function objects, and definition of a pipeline DSL (domain-specific language) for connecting the function inputs and outputs.\n",
2635
2635
"Examine the code to see how functions objects are initialized and used (by name) within the workflow.\n",
2636
2636
"\n",
2637
-
"The defined pipeline includes the folloiwng steps:\n",
2637
+
"The defined pipeline includes the following steps:\n",
2638
2638
"\n",
2639
2639
"- Ingest the Iris flower data set (`ingest`).\n",
0 commit comments