ECONOMIC STATISTICS-I�(TYPES OF CLASSIFICATION)
Prepared
By
M.Selvi
Assistant Professor of economics
CPA College,
Bodinayakanur
INTRODUCTION TO CLASSIFICATION�
Definition: Classification is a type of supervised learning where the goal is to predict a categorical label (class) for a given input.
Objective: To group data into classes based on input features.
Examples:
MAIN CATEGORIES
BINARY CLASSIFICATION�
Definition: Classification task where there are only two possible outcomes. Example: Email spam detection (Spam vs. Not Spam)Algorithms Used: Logistic Regression
Decision Trees
Support Vector Machines (SVM)
K-Nearest Neighbors (KNN)
MULTICLASS CLASSIFICATION�
Definition: Classification task with more than two classes (but each instance belongs to exactly one class).
Example: Classifying types of flowers (e.g., Rose, Tulip, Daisy)
Algorithms Used:
MULTILABEL
Definition: Each instance can belong to multiple classes simultaneously.
Example: A movie could belong to both "Action" and "Comedy" genres.
Algorithms Used:
ADDITIONAL CLASSIFICATION TYPES�
Imbalanced Classification:
Ordinal Classification:
Hierarchical Classification:
COMMON CLASSIFICATION ALGORITHMS�
Overview of Common Algorithms:
CHALLENGES IN CLASSIFICATION�
Over fitting: Model performs well on training data but poorly on unseen data.
Under fitting: Model is too simple to capture the underlying patterns in data.
Class Imbalance: One class has far fewer samples than others.
Noise and Outliers: Irrelevant data points that disrupt the model.
THANK YOU