Supervised and Unsupervised Learning Flashcards

1
Q

What is supervised learning?

A

Algos that are designed to learn by example and trained on well-labeled data and consists of an input object (typically a vector) and a desired output (supervisory signal)

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

What is the objective of leveraging a supervised learning model?

A

Predict the correct label for unseen data

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

Explain at a high level how a supervised learning model works?

A

It takes an input object which is typically a vector and a desired output (supervisory signal) and during the training phase, it searches for patterns that correlate with the desired output. After training is complete, it takes in unseen inputs and determines which label to classify it to

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

Supervised learning can be categorized into which subcategories?

A

Classification and Regression

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

How do classification algorithms work?

A

Assigns input values to classes or categories and an example would be determining if an email is spam or not spam

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

What are some of the popular classification algorithms?

A

linear classifiers, support vector machines, decision trees, k-nearest neighbors, and random forest.

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

What is a regression algorithm

A

predict continuous numbers, such as sales, income, and test scores and the goal is to find the relationship between dependent and independent variables

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

Examples of common regression algos?

A

Linear regression, lasso regression, and multivariate regression

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

What is unsupervised learning?

A

Focuses on datas features and does not use labeled data

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

Difference between supervised and unsupervised learning?

A

supervised learning uses input and outputs aka labels to train the model while unsupervised learning focuses on features

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

What is the goal of unsupervised learning?

A

Purpose is to analyze data and find important features in that data

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

What can unsupervised learning do that supervised cannot?

A

Find subgroups or hidden patterns within a dataset that a human observer might not pick up on

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

What are the two subcategories of unsupervised learning?

A

Clustering and Association

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

What is clustering?

A

process of grouping the given data into different clusters or groups

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

What are the components that go into clustering?

A

Classes will contain data points that are similar as possible to each other and as dissimilar as possible to data points in other clusters

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

What is the objective of clustering?

A

Helps to find underlying patterns within the data that may not be noticeable through a human observer

17
Q

What is partitional clustering?

A

refers to a set of clustering algos where each data point in a data set can belong to only one cluster

18
Q

What is hierarchical clustering?

A

finds clusters by a system of hierarchies; every data point can belong to multiple clusters.

19
Q

What is association?

A

attempts to find relationships between different entities. market basket analysis is a good example of how someone that usually buys burgers and fries will usually buy a drink with those items

20
Q

What are some use-cases for using unsupervised learning?

A

Airbnb - customer queries their requirements and airbnb learns those patterns and recommends stays and experiences which fall under the same group of cluster

21
Q
A