Machine Learning - Initialize Model Flashcards

1
Q

One-Class Support Vector Machine:

A

Anomaly Detection

Creates a one-class support vector machine model for anomaly detection.

This module is particularly useful in scenarios where you have a lot of “normal” data and not many cases of the anomalies you are trying to detect. For example, if you need to detect fraudulent transactions, you might not have many examples of fraud that you could use to train a typical classification model, but you might have many examples of good transactions.

You use the One-Class Support Vector Model module to create the model, and then train the model using the Train Anomaly Detection Model. The dataset that you use for training can contain all or mostly normal cases.

You can then apply different metrics to identify potential anomalies. For example, you might use a large dataset of good transactions to identify cases that possibly represent fraudulent transactions.

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

PCA-Based Anomaly Detection:

A

Anomaly Detection

Creates an anomaly detection model by using Principal Component Analysis.

This module helps you build a model in scenarios where it is easy to obtain training data from one class, such as valid transactions, but difficult to obtain sufficient samples of the targeted anomalies.

For example, to detect fraudulent transactions, very often you don’t have enough examples of fraud to train on, but have many examples of good transactions. The PCA-Based Anomaly Detection module solves the problem by analyzing available features to determine what constitutes a “normal” class, and applying distance metrics to identify cases that represent anomalies. This let you train a model using existing imbalanced data.

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

Multiclass Decision Forest:

A

Classification

Creates a multiclass classification model by using the decision forest algorithm.

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

Multiclass Decision Jungle:

A

Classification

Creates a multiclass classification model by using the decision jungle algorithm.

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

Multiclass Logistic Regression:

A

Classification

Creates a multiclass logistic regression classification model.

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

Multiclass Neural Network:

A

Classification

Creates a multiclass classification model by using a neural network algorithm.

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

One-vs-All Multiclass:

A

Classification

Creates a multiclass classification model from an ensemble of binary classification models.

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

Two-Class Averaged Perceptron:

A

Classification

Creates an averaged perceptron binary classification model.

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

Two-Class Bayes Point Machine:

A

Classification

Creates a Bayes point machine binary classification model.

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

Two-Class Boosted Decision Tree:

A

Classification

Creates a binary classifier by using a boosted decision tree algorithm.

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

Two-Class Decision Forest:

A

Classification

Creates a two-class classification model by using the decision forest algorithm.

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

Two-Class Decision Jungle:

A

Classification

Creates a two-class classification model by using the decision jungle algorithm.

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

Two-Class Locally Deep Support Vector Machine:

A

Classification

Creates a binary classification model by using the locally deep Support Vector Machine algorithm.

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

Two-Class Logistic Regression:

A

Classification

Creates a two-class logistic regression model.

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

Two-Class Neural Network:

A

Classification

Creates a binary classifier by using a neural network algorithm.

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

Two-Class Support Vector Machine:

A

Classification

Creates a binary classification model by using the Support Vector Machine algorithm.

17
Q

K-Means Clustering:

A

Clustering

Configures and initializes a K-means clustering model.

18
Q

Bayesian Linear Regression:

A

Creates a Bayesian linear regression model.

19
Q

Boosted Decision Tree Regression:

A

Creates a regression model by using the Boosted Decision Tree algorithm.

20
Q

Decision Forest Regression:

A

Creates a regression model by using the decision forest algorithm.

21
Q

Fast Forest Quantile Regression:

A

Creates a quantile regression model.

22
Q

Linear Regression:

A

Creates a linear regression model.

23
Q

Neural Network Regression:

A

Creates a regression model by using a neural network algorithm.

24
Q

Ordinal Regression:

A

Creates an ordinal regression model.

25
Q

Poisson Regression:

A

Creates a regression model that assumes data has a Poisson distribution.