Unsupervised Learning Flashcards

1
Q

Learning method where TARGET LABELS are unknown

Tries to find the innate structure of data
Eg clustering

A

Unsupervised learning

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

Groups the data into K CLUSTERS based on data’s DISTANCE FROM EACH CLUSTER’S CENTER

A

K means clustering

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

Each cluster’s centroid is considered a

A

Centroid

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

What is the algorithm of K Means clustering

A

> initialize k centroids RANDOMLY
for each data, compute distance from each centroid
get average of coordinates of data assigned to each centroid
if centroid stay the same, stop, else compute distances again

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

What do you do if a centroid has no data point?

A

Restrat the algorithm and choose different centroids

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

True or false: kmeans always produces the optimal solution

A

False. It can get stuck to a LOCAL optimum especially if value of k is TOO SMALL

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