Unsupervised Machine Learning Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

What is unsupervised learning?

A

This is used when we do not have a target/y in our dataset and we need our machine to learn patterns in the data on its own

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

What is Kmeans clustering?

A

Randomly chooses k points to start as our clusters centers (commonly called centoids)

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

What is explanatory k means

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

What is Hierarchical Clustering?

A

Hierarchical Clustering is another way to Clustering our data into different groups

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

What is Divisive Clustering?

A

The is a top-down approach, starts with all data in one cluster and split data into more based on similar traits

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

What is Agglomerative Clustering?

A

This is a bottom-up approach, starts with each data point in its own cluster, from there we group clusters together until we have one

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

What is DBSCAN?

A

DBSCAN (Density-Based Spatial Clustering of Applications with Noise) is an algorithm used for clustering

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

How effective is DBSCAN?

A

this is a useful algorithm to group high density clusters together, while ignoring data points that may not fit together “called noise”

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

What is Dimensionality Reduction?

A

Dimensionality reduction refers to any technique where we try to reduce the feature space we are working with.

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

What are the two types of dimensionality reduction?

A

Feature selection and feature extraction

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

What is Feature selection?

A

Choosing only the most important features in your final model and leave out the features not important to the model

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

What is feature Extraction?

A

Feature extraction refers to techniques where you take all of your features and combine the in certain ways to reduce them into lower dimensions?

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

What can you use pca for?

A

You can use PCA to speed up a supervised machine learning even though PCA itself is an unsupervised machine learning task.

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

What is Feature Engineering?

A

Feature engineering is when you add or modify features to your data. Pca is one example of feature engineering.

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

How to overload in pandas?

A

Pandas will overload the + sign to concatenate two string columns.

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