Phase 02
Ml Fundamentals
18 lessons
01
What Is Machine Learning
Machine learning is teaching computers to find patterns in data instead of writing rules by hand.
02Linear Regression
Linear regression draws the best straight line through your data. It is the "hello world" of machine learning.
03Logistic Regression
Logistic regression bends a straight line into an S-curve to answer yes-or-no questions with probabilities.
04Decision Trees and Random Forests
A decision tree is just a flowchart. But a forest of them is one of the most powerful tools in ML.
05Support Vector Machines
Find the widest street between two classes. That is the entire idea.
06K-Nearest Neighbors and Distances
Store everything. Predict by looking at your neighbors. The simplest algorithm that actually works.
07Unsupervised Learning
No labels, no teacher. The algorithm finds structure on its own.
08Feature Engineering & Selection
A good feature is worth a thousand data points.
09Model Evaluation
A model is only as good as the way you measure it.
10Bias-Variance Tradeoff
Every model error comes from one of three sources: bias, variance, or noise. You can only control the first two.
11Ensemble Methods
A group of weak learners, combined correctly, becomes a strong learner. This is not a metaphor. It is a theorem.
12Hyperparameter Tuning
Hyperparameters are the knobs you turn before training starts. Turning them well is the difference between a mediocre model and a great one.
13ML Pipelines
A model is not a product. A pipeline is. The pipeline is everything from raw data to deployed prediction, and every step must be reproducible.
14Naive Bayes
The "naive" assumption is wrong, and it works anyway. That's the beauty of it.
15Time Series Fundamentals
Past performance does predict future results -- if you check for stationarity first.
16Anomaly Detection
Normal is easy to define. Abnormal is whatever doesn't fit.
17Handling Imbalanced Data
When 99% of your data is "normal," accuracy is a lie.
18Feature Selection
More features is not better. The right features is better.