Skip to content

Commit cede311

Browse files
authored
Merge pull request #245 from v3io/development
getting-started-tutorial minor spelling and grammar fixes
2 parents 5e242e4 + 17430c7 commit cede311

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

getting-started-tutorial/getting-started-tutorial.ipynb

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"## Overview\n",
1717
"\n",
1818
"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",
2020
"\n",
2121
"1. [Create and configure a new project](#gs-step-project-create-n-config)\n",
2222
"2. [Ingest a data set](#gs-step-ingest-data)\n",
@@ -1331,7 +1331,7 @@
13311331
"metadata": {},
13321332
"source": [
13331333
"<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",
13351335
"\n",
13361336
"You can perform further data exploration by leveraging **the MLRun functions marketplace** (a.k.a. \"the MLRun functions hub\").\n",
13371337
"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 @@
17581758
"## Step 4: Run Model Training at Scale\n",
17591759
"\n",
17601760
"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",
17621762
"Then, use an MLRun task to run your function in order to train and evaluate the models and select the optimal model."
17631763
]
17641764
},
@@ -1802,14 +1802,14 @@
18021802
"The returned run object is stored in a `train_run` variable.\n",
18031803
"\n",
18041804
"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",
18061806
"The `with_hyper_params` method receives the following parameters\n",
18071807
"\n",
18081808
"- **`hyperparams`** &mdash; a dictionary of parameter names and parameter-values lists.\n",
18091809
" 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`** &mdash; a string of the format `'<min/max>.<validation criterion>'`, which defines a selection criteria for selecting the winning run iteration.\n",
1810+
"- **`selector`** &mdash; a string of the format `'<min/max>.<validation criterion>'`, which defines a selection criterion for selecting the winning run iteration.\n",
18111811
" 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."
18131813
]
18141814
},
18151815
{
@@ -2634,7 +2634,7 @@
26342634
"The workflow file has two parts &mdash; initialization of the function objects, and definition of a pipeline DSL (domain-specific language) for connecting the function inputs and outputs.\n",
26352635
"Examine the code to see how functions objects are initialized and used (by name) within the workflow.\n",
26362636
"\n",
2637-
"The defined pipeline includes the folloiwng steps:\n",
2637+
"The defined pipeline includes the following steps:\n",
26382638
"\n",
26392639
"- Ingest the Iris flower data set (`ingest`).\n",
26402640
"- Analyze the data set (`describe`).\n",
@@ -3205,4 +3205,4 @@
32053205
},
32063206
"nbformat": 4,
32073207
"nbformat_minor": 4
3208-
}
3208+
}

0 commit comments

Comments
 (0)