Python with IBM Flashcards

Coursera

1
Q

What is the Machine Learning technique of Regression/Estimation?

A

Predicting continuous values. ie predicting the price of a house based on its characteristics or estimating the Co2 emission from a car’s engine

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

What is the Machine Learning technique of Classification?

A

Predicting the item class/category of a case: Yes or No answer. ie if a cell is benign or malignant

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

What is the Machine Learning technique of Clustering?

A

Finding the structure of data; summarization; grouping of similar things. ie can find similar patients, or can be used for customer segmentation in the banking field

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

What is the Machine Learning technique of Associations?

A

Associating frequent co-occuring items/events ie grocery items that are usually bought together by a particular customer

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

What is the Machine Learning technique of Anomaly detection?

A

Discovering abnormal and unusual cases ie credit card fraud detection

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

What is the Machine Learning technique of Sequence mining?

A

Predicting the next events. ie the click stream or what will a user will click next

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

What is the Machine Learning technique of Dimension Reduction?

A

Reducing the size of data

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

What is the Machine Learning technique of Recommendation systems?

A

Associates people’s preferences with others who have similar tastes and recommends new items to them

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

Parts of a Machine Learning Pipeline

A

Data Preprocessing->Train/Test split->Algorithm setup->Model fitting->Prediction->Evaluation->Model export

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

What are the 2 types of Supervised Learning?

A

Classification and Regression

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

What is Classification?

A

The process of predicting discrete class labels or categories. yes or no

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

What is Regression?

A

The process of predicting a continous value

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

What are the Unsupervised learning techniques?

A
  • Dimension reduction
  • Density estimation
  • Market basket analysis
  • Clustering
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is Clustering

A

Clustering is grouping of data points or objects that are somehow similar by:
*Discovering structure
* Summarization
* Anomaly detection

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

What is the difference between Supervised and Unsupervised Learning

A

Supervised Learning
Classification: Classifies labeled data
Regression: Predicts trends using previous labeled data
Has more evaluation methods than unsupervised learning
Controlled environment

Unsupervised Learning
Clustering: Finds patterns and groupings from unlabeled data
Has fewer evaluation methods than supervised learning
Less controlled environment

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

In Regression what is the Dependent Variable

A

The dependent variable can be seen as the state, target, or final goal we study and try to predict. It is usually denoted by Y.

17
Q

In Regression what is the InDependent Variable

A

The independent variable, also known as explanatory variable, can be seen as the causes of the states of the dependent variable. There can be multiple dependent

18
Q

How is a Regression Model expressed?

A

The independent variables are shown conventionally by X and the dependent variable is notated by Y. A regression model relates Y or the dependent variable to a function of X i.e. the independent variables.

19
Q

What are the types of regression

A

Simple and Multiple Regression

20
Q

What is Simple Regression?

A

Where there is only one dependent and independent variable. Could be Linear or Non-Linear

21
Q

What is Multiple Regression?

A

Where there is one dependent variable and multiple independent variables. Could be Linear or Non-Linear.

22
Q
A