Algorithms Flashcards

1
Q

Linear Regression?
Example.

A

LR is a supervised ML model that finds the best fit linear relationship line between independent variables and dependent variables.
Forecasting, will customer would buy in the future

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

Logistic Regression?
Example.

A

Logistic Regression is a classification algorithm used to predict a binary outcome for a given set of independent variables.
Customer’s interest in buying/continuing services

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

Clustering?
Example.

A

Clustering problems involve data to be divided into subsets. These subsets, also called clusters, contain data that are similar to each other. Different clusters reveal different details about the objects, unlike classification or regression.
Market research, customer base

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

SVM?
Example

A

SVM is a supervised machine learning algorithm which can be used for classification or regression problems. It uses a technique called the kernel trick to transform your data and then based on these transformations it finds an optimal boundary between the possible outputs.
Predicting customers churn in telecommunication

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

Decision Tree?
Example

A

A decision tree builds classification (or regression) models as a tree structure, with datasets broken up into ever-smaller subsets while developing the decision tree, literally in a tree-like way with branches and nodes. Decision trees can handle both categorical and numerical data.
Expansion and growth

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

Naive Bayes?
Example

A

Naïve Bayes Classifier is one of the simple and most effective Classification algorithms which helps in building the fast machine learning models that can make quick predictions. It is a probabilistic classifier, which means it predicts on the basis of the probability of an object.
Spam filtering, recommendation systems

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

ML LifeCycle?

A

Data Gathering -> Data Prep -> Selecting right model -> Training model -> Testing model -> Tuning the parameters -> Making predictions

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

K-means vs KNN?

A

K-means is unsupervised algorithm else.
It is a clustering algorithm, KNN classification
KNN uses proximity to make classification/predictions about the grouping of an individual data point.
K in KNN means number or nearest neighbors

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