Week 10: Clustering Flashcards

1
Q

Clustering

A

A method of grouping samples based on how similar they are to each other.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

K-Means Clustering

A

A method of clustering where samples are grouped based on the closest centroid. Centroids are recalculated after each iteration by averaging the coordinates of all samples assigned to the centroid.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Fuzzy K-means Clustering

A

A method assigning a probability of each sample belonging to each centroid. Centroids and probabilities are updated in each iteration.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Iterative Clustering

A

A subset of clustering that focuses on local optimisation over global optimisation.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Basic Iterative Min-Squared-Error Clustering

A

It’s a type of iterative clustering that’s essentially K-means clustering done sequential for each sample.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Hierarchical Clustering

A

A type of clustering where the samples are split into subclusters that have a hierarchy.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Agglomerative Hierarchical Clustering

A

A type of hierarchical clustering that begins with each sample in its own cluster. Clusters are merged together until only one cluster remains.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Competitive Learning

A

Similar to K-means, except it’s done sequentially and only the assigned centroid is updated each step.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Basic-leader-follower Clustering

A

It’s done sequentially, with the first sample being the first centroid. If the distance to the centroid with within a threshold, the centroid is kept and updated. If the distance isn’t within the threshold, a new centroid is created with the current sample.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly