Machine Learning Types Flashcards

(14 cards)

1
Q

What are the machine learning types?

A

Supervised machine learning
Unsupervised machine learning
Self-supervised machine learning
Reinforcement learning
Semi-supervised learning

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

What is supervised machine learning?

A

Supervised machine learning is where the model is trained on a labeled data set. Commonly used for risk assessment, image recognition, predictive analytics, and fraud detection

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

What are regression algorithms?

A

Supervised machine learning - predict output values by identifying linear relationships between real or continuous values. Linear regression, random forest and gradient boosting

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

What are classification algorithms?

A

Supervised machine learning - predict categorical output variables (junk or not junk) by labeling pieces of input data (logistical regression, k-nearest neighbor, and support vector machines

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

What are Naive Bayes classifiers

A

Supervised machine learning - enables classification tasks for large data sets and part of a family of generative learning algorithms. Include decision trees

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

What are neural networks

A

Supervised machine learning - simulate the way human brains work with a huge number of linked processing nodes. Can facilitate natural language translation, image recognition speech recognition and image creation

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

What are random forest algorithms?

A

Supervised machine learning - predict a value or category by combining the results from a number of decision trees

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

What is unsupervised machine learning?

A

Draw inferences from unlabeled datasets, most commonly cluster analysis to categorize data points according to value similarity. Most commonly behind “Customers like you bought….”

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

What is K-means clustering

A

Unsupervised machine learning - assigns data points into K groups where the data points closes to a given centroid are clustered under the same category and K represents clusters based on their size and level of granularity. Used for market segmentation, document clustering

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

What is hierarchical clustering?

A

Unsupervised machine learning - a set of clustering techniques where data is initially isolated into groups based on similarity until one cluster remains and decisive clustering where a single data cluster is divided based on differences in data points

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

What is probabilistic clustering?

A

Unsupervised machine learning - helps solve density estimation or soft clustering problems by grouping data points based on the likelihood that they belong to a particular distribution

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

What is self-supervised machine learning?

A

SSL enables models to train themselves on unlabeled data instead of requiring annotated or labeled data sets. They learn one part of the input from another part, automatically generating labels and transforming unsupervised problems into supervised ones. Useful when a LARGE volume of labeled data is needed

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

What is reinforcement learning?

A

Dynamic programming that trains algorithms with reward and punishment . The agent completes a task and is rewarded or punished with points to encourage good behavior and discard bad ones. With repetition, it learns strategies.

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

What is semi-supervised learning

A

A combination of supervised and unsupervised, trained on a small labeled and large unlabeled dataset with the label guiding the learning process for the unlabeled. Unsupervised learning might identify data clusters and then supervised will label.

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