Skip to content

Commit ede01a2

Browse files
Includeing additional typos corrections highlight in Issues
1 parent 46e6aca commit ede01a2

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

individual_modules/introduction_to_machine_learning/2_model_selection.ipynb

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
"\n",
99
"## Learning objectives\n",
1010
"\n",
11-
"* Select different machine learning models in `scikit-learn`, and train them \n",
11+
"* Select different machine learning models in `scikit-learn` and train them \n",
1212
"* Understand that models have different characteristics, including flexibility, parameterisation, and more, which affects model selection and efficacy\n",
1313
"* Explain the model flexibility/over-fit trade off \n",
14-
"* Explain what model train and test error are, and how these relate to overfitting "
14+
"* Explain what model train and test errors are, and how these relate to overfitting "
1515
]
1616
},
1717
{
@@ -782,7 +782,7 @@
782782
"### Summary\n",
783783
"\n",
784784
"* We have used a linear model to classify points into two classes.\n",
785-
"* We achieves a 95% accuracy score on the test set: this means that given a new (representative) point, we should have a 95% chance of this point being accurately classified."
785+
"* We achieved a 95% accuracy score on the test set: this means that given a new (representative) point, we should have a 95% chance of this point being accurately classified."
786786
]
787787
},
788788
{
@@ -1321,7 +1321,7 @@
13211321
"metadata": {},
13221322
"source": [
13231323
"* Lets plot the misclassified points, but also the decision boundary\n",
1324-
"* For binary logistic regression, this is the line where the probability of belonging to a class is 0.5"
1324+
"* For a binary logistic regression, this is the line where the probability of belonging to a class is 0.5"
13251325
]
13261326
},
13271327
{
@@ -1380,10 +1380,10 @@
13801380
"cell_type": "markdown",
13811381
"metadata": {},
13821382
"source": [
1383-
"## Changing model\n",
1383+
"## Changing the model\n",
13841384
"\n",
13851385
"* We can potentially get improved performance if we select a new model\n",
1386-
"* Lets use an SVM (support Vector Machine) with a radial basel function kernel.\n",
1386+
"* Lets use an SVM (Support Vector Machine) with a radial basis function kernel.\n",
13871387
"* This can model non-linear decision boundaries."
13881388
]
13891389
},
@@ -1888,7 +1888,7 @@
18881888
],
18891889
"metadata": {
18901890
"kernelspec": {
1891-
"display_name": "cfrr",
1891+
"display_name": "Python 3 (ipykernel)",
18921892
"language": "python",
18931893
"name": "python3"
18941894
},
@@ -1902,9 +1902,9 @@
19021902
"name": "python",
19031903
"nbconvert_exporter": "python",
19041904
"pygments_lexer": "ipython3",
1905-
"version": "3.13.0"
1905+
"version": "3.9.19"
19061906
}
19071907
},
19081908
"nbformat": 4,
1909-
"nbformat_minor": 2
1909+
"nbformat_minor": 4
19101910
}

individual_modules/introduction_to_machine_learning/3_pipeline_task.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"\n",
4848
"* What kind of machine learning problem/task is this?\n",
4949
"* What are our goals? What are we predicting?\n",
50-
"* If this was a research task, does what were doing make sense?\n",
50+
"* If this was a research task, does what we're doing make sense?\n",
5151
"* How would a human answer the question?\n",
5252
"* What performance would we be happy with?\n",
5353
"* Do we have any assumptions yet? Can we verify these?\n",
@@ -5530,7 +5530,7 @@
55305530
],
55315531
"metadata": {
55325532
"kernelspec": {
5533-
"display_name": "cfrr",
5533+
"display_name": "Python 3 (ipykernel)",
55345534
"language": "python",
55355535
"name": "python3"
55365536
},
@@ -5544,9 +5544,9 @@
55445544
"name": "python",
55455545
"nbconvert_exporter": "python",
55465546
"pygments_lexer": "ipython3",
5547-
"version": "3.13.0"
5547+
"version": "3.9.19"
55485548
}
55495549
},
55505550
"nbformat": 4,
5551-
"nbformat_minor": 2
5551+
"nbformat_minor": 4
55525552
}

0 commit comments

Comments
 (0)