What is Classification in Machine Learning?
As the name suggests, classification is a field of research that allows you to classify things, objects, text, images, sounds, etc using a supervised machine learning technique. This means that you are predicting values based on the labeled data of the training examples you have previously provided.
There are two main types of classification problems:
Photo source: Blogs.oracle.com |
There are two main types of classification problems:
- Binary classification - where the classification task has two possible outcomes:
- Gender classification: male / female
- Email filtering: spam / not spam
- Bank transaction: fraudulent / authorized
- Multi-class classification - where the classification task has more than two distinct classes:
- classification of the type of soil
- classification of the type of crops
- text sentiment analysis
Which are the most used types of classification algorithms in Machine Learning?
- Linear Classifiers: Logistic Regression, Naive Bayes Classifier
- Support Vector Machines
- Decision Trees
- Boosted Trees
- Random Forest
- Neural Networks
- Nearest Neighbor
Comments
Post a Comment