From 52fc43af8db09df1e2b859d77dbe4518bde3e36c Mon Sep 17 00:00:00 2001 From: Hiroshi Yoshioka <40815708+hyoshioka0128@users.noreply.github.com> Date: Tue, 30 Jun 2026 01:18:42 +0900 Subject: [PATCH] Fix capitalization of 'Notebooks' in README Corrected capitalization of 'Notebooks' in multiple instances. https://github.com/microsoft/ML-For-Beginners/blob/main/2-Regression/1-Tools/README.md #PingMSFTDocs --- 2-Regression/1-Tools/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/2-Regression/1-Tools/README.md b/2-Regression/1-Tools/README.md index 7fbf137c7..6f20347d7 100644 --- a/2-Regression/1-Tools/README.md +++ b/2-Regression/1-Tools/README.md @@ -15,7 +15,7 @@ In these four lessons, you will discover how to build regression models. We will In this lesson, you will learn how to: - Configure your computer for local machine learning tasks. -- Work with Jupyter notebooks. +- Work with Jupyter Notebooks. - Use Scikit-learn, including installation. - Explore linear regression with a hands-on exercise. @@ -80,7 +80,7 @@ You can interleaf your code with comments to self-document the notebook. ## Up and running with Scikit-learn -Now that Python is set up in your local environment, and you are comfortable with Jupyter notebooks, let's get equally comfortable with Scikit-learn (pronounce it `sci` as in `science`). Scikit-learn provides an [extensive API](https://scikit-learn.org/stable/modules/classes.html#api-ref) to help you perform ML tasks. +Now that Python is set up in your local environment, and you are comfortable with Jupyter Notebooks, let's get equally comfortable with Scikit-learn (pronounce it `sci` as in `science`). Scikit-learn provides an [extensive API](https://scikit-learn.org/stable/modules/classes.html#api-ref) to help you perform ML tasks. According to their [website](https://scikit-learn.org/stable/getting_started.html), "Scikit-learn is an open source machine learning library that supports supervised and unsupervised learning. It also provides various tools for model fitting, data preprocessing, model selection and evaluation, and many other utilities."