ML Machine Learning Flashcards

Certification Study

1
Q

What distinguishes the ML process?

A

Data fed model with labeled data.

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

What is labeled data?

A

Data is labeled or by a by a targeted variable or output or classification either provided by humans or through a reliable process.

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

How is Unlabeled data distinguished?

A

The instances or examples do not have any associated labels or target variables. There is ONLY input features.

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

What are the main types of data used for training.

A
  1. Structured data
  2. Unstructured data
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is structured data?

A

Data is organized and formatted in a predefined way such as tables or databases with rows and columns.

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

When is it best to use structured data?

A

Use structured data for traditional learning algorithms that require defined features and labels.

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

Provide some examples of structured data.

A
  1. Tabular data: Data is stored in spreadsheets, databases or CSV files where rows represent instances and columns represent features or attributes.

2.Time Series Data: Data consists of sequences of values measure at successive points in time like stick market process, sensors or weather data.

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

Explain what is unstructured data and provide examples of each of the 2 different types.

A

Unstructured data does not have a predefined structure like text, images and video. More advance learning techniques are needed to extract meaningful patterns and insights.

Text data: documents, articles, social media posts and other textual data
Image data: Includes digital images, photographs, video frames

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

How is the ML learning process? Are there defined categories and if so list them.

A

Data is fed into ML learning algorithms and divided into 3 categories.
1. Supervised Learning
2. Unsupervised Learning
Reinforcement Learning

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

Briefly describe Supervised learning.

A

In Supervised Learning Algorithms are trained on LABELED DATA.
The goal is to learn a mapping function that can predict the output for new, unseen inout data.

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

Briefly describe UnSupervised Learning.

A

In UnSupervised learning algorithms learn from UNLABELED DATA.
The goal is discover inherent patterns, structures or relationships in the input data.

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

Briefly describe Reinforcement Learning.

A

In Reinforcement learning: the machine is rewarded with a performance score in a semi supervised learning with only a portion of the data is labeled.
Feedback is rewards or punishments to improve decision making.

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

What is batch inferencing and when do you utilize it?

A

Batch inferencing is used when the computer takes in alot of data - images, text and needs to analyze it all at once.
Used for ACCURACY NOT SPPED.

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

When do you use REAL-Time inferencing and what is is actually?

A

Needed for speed and quick response such as chatbots or self-driving cars. Real time or instant analysis is needed.

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

After a model is trained it can be used in a process to make predictions or decisions based - what is this process called? Is there more than one type? - if so list it or them.

A

The process a trained ML uses is called inferencing.
2 types
1. Batch Inferencing
2. Real-time inferencing

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