7.3 Unsupervised Learning Algorithms and Other Models Flashcards

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

List three unsupervised machine learning algorithms.

A
  1. Principal component analysis (PCA)
  2. Hierarchical clustering
  3. K-means clustering
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

PCA stands for what?

A

Principal component analysis.

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

PCA summarizes the information in a large number of ___________ factors and into a much small set of _________ factors.

A

correlated;

uncorrelated;

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

Give the term that describes the following: The uncorrelated factors in a PCA which are linear combinations of the original features.

A

Eigenvectors;

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

Within a PCA, each ________ has an ________. An _________ is the proportion of total variance in the data set explained by the _________.

A

eigenvalue;

eigenvector;

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

Within a PCA, explain how eigenvectors are applied.

A

Eigenvectors are essentially (my interpretation) percentage weightings that are applied to each independent variable to change what otherwise would be a set of correlated independent variables (e.g., interest rates, stock prices; etc.) into a set of uncorrelated independent variables.

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

Within a PCA, the __________ with the highest __________ is the independent variable that is the most important to the model.

A

eigenvector;

eigenvalue;

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

PCA is totally a ____ ___ where you are completely dependent upon the computer to make predictions. This may work fine on __-_____ data. Maybe not so great for ___-__-_____ data.

A

black box;
in-sample;
out-of-sample;

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

__-____ clustering requires that you be familiar enough with the data to know how many _______ you should have.

A

K-means;

clusters;

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

K-means clustering partitions observations into “__” ________ clusters.

A

k;

nonoverlapping;

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

______ _______ is an ________ unsupervised algorithm used to form a _________ of clusters. Each ____________ is its own cluster.

A

Hierarchical clustering;
iterative;
hierarchy;
observation;

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

In an ____________ (or ______-__) clustering algorithm, you start with one observation as its own cluster and add other similar observations to that group.

A

agglomerative;

bottom-up;

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

In a _________ (or ___-____) clustering algorithm, you start with one giant cluster and then partition that cluster into smaller and smaller clusters.

A

divisive;

top-down;

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

A ________ _________ consists of nodes connected by links.

A

neural network;

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

List and describe the three layers of a neural network.

A
  1. Input layer (contains nodes with values for the features, i.e., the independent variables);
  2. Hidden layers (contains nodes to which the multiple nodes within the input layer connect to … can be multiple hidden layers);
  3. Output layers;
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

in a neural network, learning happens in the ______ layer nodes.

A

hidden;

17
Q

Is a neural network able to handle nonlinearities?

A

Yes.

18
Q

What does DLN stand for?

A

Deep learning network;

19
Q

DLNs are _______ ________ networks.

A

unsupervised neural;

20
Q

Are neural networks supervised or unsupervised?

A

supervised;

21
Q

In terms of the layers, what distinguishes a neural network from a deep learning network?

A

A neural network has only a few hidden layers, whereas a DLN has many hidden layers (often more than 20).

22
Q

What types of complex activities are DLNs used for?

A

Pattern, image and speech recognition.

23
Q

DLNs are the basis of the ______ ________ revolution.

A

artificial intelligence;

24
Q

A ______ ______ algorithm attempts to maximize rewards over time within the constraints of its environment.

A

reinforcement learning (RL);

25
Q

Does reinforcement learning have direct labeled data?

A

No.

26
Q

An RL algorithm learns by testing ___ ______ and reusing its ______ _________. Millions of trial and error repetitions.

A

new actions;

previous experiences;

27
Q

What is the term that describes the process that seeks to reduce noise by discarding those attributes that contain little information? Is it a supervised or an unsupervised learning algorithm?

A

Dimension reduction;

unsupervised;