Machine learning is a type of AI 🧠 that allows software to learn from the data and become more accurate in predicting outcomes without human interventions 👨🦱
- Supervised Learning 👀
- Unsupervised Learning 🙈
- Semi-Supervised Learning 👀🙈
- Reinforcement Learning 🙈🙈
The supervised learning is a type of ML that learns from labeled data
- Supervised learning is used in:
- Regression 📈
- Classification 🐶🐱
Regression is type of supervised learning that predicts the continous values.
The most common algorithms:
- Linear Regression
- SVR
- Random Forest Regression
Classification is type of supervised learning that predicts the discrete values (Yes or no).
The most common algorithms:
- Logistic Regression
- SVC
- Random Forest Classifier
In unsupervised learning, the training data consists of a set of input vectors but no corresponding target values
A way of grouping the data points into different clusters, consisting of similar data points.
The most common algorithms are:
- K means Clustering
- Hierarchical clustering