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