Skip to content

Commit 3b6937b

Browse files
committed
fixed a typo
1 parent f6436ea commit 3b6937b

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

5_intro_to_machine_learning/ml_fundamentals.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ As the next parts will cover the practical implementations of typical data prepr
295295

296296
* **Scaling the numeric features:** Most ML models work well when the input values are scaled to small values because they can train and converge faster than they would otherwise. There are two main scaling techniques that are normalization and standardization. Normalization rescales the feautures to the values between 0 and 1 whereas standardization rescales the features to have mean of 0 and a unit standard deviation. If you are aware that your data has normal or gausian distribution, normalization can be a good choice. Otherwise, standardization will work well in many cases.
297297

298-
In many textbooks and courses, data preprocessing is also referred to data cleaning or data preparation. Feature engineering is also a part of data preprocessing. Feature engineering is a creative task and it require some extra knouledge about the data and the problem as it involves creating new features from existing features.
298+
In many textbooks and courses, data preprocessing is also referred to data cleaning or data preparation. Feature engineering is also a part of data preprocessing. Feature engineering is a creative task and it require some extra knowledge about the data and the problem as it involves creating new features from existing features.
299299

300300
#### Selecting and Training a Model
301301

0 commit comments

Comments
 (0)