Class Fi Cation
Class Fi Cation
Definition: In binary classification, the problem involves categorizing items into two classes.
Example: Email spam detection (spam or not spam), disease diagnosis (positive or negative), customer
churn prediction (churn or not churn).
Multi-Class Classification
Definition: Multi-class classification involves classifying items into three or more classes.
Example: Handwritten digit recognition (0-9), language identification (English, French, Spanish), movie
genre classification (action, comedy, drama, etc.).
Multi-Label Classification
Definition: In multi-label classification, each instance can be assigned to multiple classes.
Example: News categorization (a news article can belong to both "Politics" and "World News"), image
tagging (an image can have tags like "beach," "sunshine," and "people").
Imbalanced Classification
Definition: Imbalanced classification occurs when one class in the dataset has significantly fewer instances
compared to other classes.
Challenge: Traditional algorithms might be biased towards the majority class. Special techniques like
resampling (over-sampling minority class, under-sampling majority class) and using different evaluation
metrics are employed to handle imbalanced datasets.
Multi-Output Classification
Definition: Multi-output classification involves predicting multiple target variables for each input instance.
Example: Predicting both the type and color of an object in an image (object type: "car," color: "red").
Ordinal Classification
Definition: In ordinal classification, the classes have a specific order or ranking.
Example: Customer satisfaction levels (low, medium, high), star ratings (1 star, 2 stars, 3 stars, etc.).
Hierarchical Classification
Definition: Hierarchical classification organizes classes into a tree-like structure, where classes at higher
levels are more general, and classes at lower levels are more specific.
Example: Species classification in biology (kingdom, phylum, class, order, family, genus, species).
Anomaly Detection
Definition: Anomaly detection involves identifying rare items, events, or observations that deviate
significantly from the majority of the data.
Example: Fraud detection in banking, network intrusion detection, quality control in manufacturing.
Questions?
END OF LECTURE 1