Age Detection
Age Detection
• DB scan clustering
• Algorithm
• Numerical Problem
• Advantages
• Drawbacks
• Application
Reference
DB SCAN CLUSTERING
Assign each point in the dataset as unvisited. For each point p in the dataset:
If the size of Nε( p) is less than MinPts, mark p as noise and continue to the next point.
Otherwise, assign p as a core point and create a new cluster Add p to the current cluster.
If the size of Nε(q) is greater than or equal to MinPts, add all points inNε(q) to the
current cluster.
If q is not already a member of any cluster, add q to the current cluster as a border
NUMERICAL EXAMPLE
? Data points:
P1(3,7) P2(4,6) P3(5,5)P4(6,4)
P5(7,3) P6(6,2)P7(7,2)P8(8,4)
P9(3,3)P10(2,6)P11(3,5)P12(2,4)
5
Y-axis
0
0 1 2 3 4 5 6 7 8 9
X-axis
Graph: Clustering
ADVANTAGES
• Sensitive to Parameters:
• Difficulty with Varying Density
• Computational Complexity
• Non-Euclidean Spaces
• Cluster Shape Sensitivity
• Handling noise and Outliers
APPLICATION
Anomaly Detection
Spatial Data Analysis:
Image Segmentation
Customer Segmentation
Genomics and Bioinformatics
Recommendation System
Healthcare Data Analysis
Environmental Monitoring
REFERENCE
• https://www.geeksforgeeks.org/self-organising-maps-kohonen-maps/
• https://www.simplilearn.com/self-organizing-kohonen-maps-article
• https://en.wikipedia.org/wiki/Self-organizing_map
THANK YOU