DBSCAN (Density-Based Clustering)

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/6

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

7 Terms

1
New cards

shapes

The clusters have complex, non-spherical shapes

2
New cards

When is Density-Based Clustering particularly effective?

When clusters have varying densities

3
New cards

Why would you use Density-Based Clustering if the number of clusters is unknown or hard to estimate?

do not require the number of clusters to be specified in advance

4
New cards

Initialization

all points are marked as unvisited

5
New cards

Random selection

pick a random unvisited point from the dataset

6
New cards

Region query

for chosen point, retrieve its neighborhood defined by distance epsilon e

7
New cards

Expansion

if there are ‘minPts’ or more within e start a new cluster and add chosen point to new cluster, continue. If point has fewer than ‘minPts’ mark it as noise for now