4. Machine Learning Basics Flashcards

1
Q

What is a machine learning algorithm?

A

An algorithm that is able to learn from data

This definition emphasizes the ability to adapt based on data inputs.

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

How does Mitchell (1997) define learning in a computer program?

A

A computer program learns from experience E with respect to some class of tasks T and performance measure P if its performance at tasks in T, as measured by P, improves with experience E

This definition highlights the relationship between experience, tasks, and performance.

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

What are the three components involved in the definition of learning by Mitchell?

A
  • Experience E
  • Tasks T
  • Performance measure P

These components interact to define the learning process in machine learning.

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

Fill in the blank: A computer program is said to learn from experience ______.

A

[key learning term] E

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

What improves with experience E according to Mitchell’s definition?

A

Performance at tasks in T

This improvement is measured by the performance measure P.

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

True or False: The book attempts to formally define experiences, tasks, and performance measures.

A

False

Instead, the book provides intuitive descriptions and examples.

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

What is the focus of the following sections in the book regarding machine learning?

A

Intuitive descriptions and examples of different kinds of tasks, performance measures, and experiences

This approach aims to clarify the concepts without formal definitions.

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

What enables us to tackle tasks that are too difficult to solve with fixed programs?

A

Machine learning

Machine learning allows for adaptive solutions rather than static programming.

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

From what perspectives is machine learning considered interesting?

A

Scientific and philosophical

It helps us understand the principles underlying intelligence.

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

In the context of machine learning, what is the distinction between ‘task’ and ‘learning’?

A

‘Task’ refers to the activity to be performed, while ‘learning’ is the means to attain the ability to perform the task

For example, walking is the task, and learning to walk is the process.

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

What is an example in machine learning?

A

A collection of features that have been quantitatively measured from some object or event

Examples are crucial for training machine learning models.

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

How is an example typically represented in machine learning?

A

As a vector x∈Rn

Each entry xi of the vector corresponds to a feature.

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

What do the features of an image usually represent in machine learning?

A

The values of the pixels in the image

Pixel values serve as features for image processing tasks.

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

True or False: In machine learning, the process of learning is considered the task.

A

False

The task is the activity to be performed, while learning is a process to achieve that activity.

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

Fill in the blank: Machine learning tasks are usually described in terms of how the machine learning system should process an _______.

A

example

This processing is essential for training and making predictions.

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

What is classification in machine learning?

A

A task where the computer specifies which of k categories some input belongs to

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

What function does a learning algorithm produce for classification tasks?

A

f : Rn →{1,…,k}

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

In classification, what does y = f(x) represent?

A

The model assigns an input described by vector x to a category identified by numeric code y

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

What is a variant of the classification task?

A

When f outputs a probability distribution over classes

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

Give an example of a classification task.

A

Object recognition

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

What is the input for an object recognition task?

A

An image described as a set of pixel brightness values

23
Q

What does the output of an object recognition task represent?

A

A numeric code identifying the object in the image

24
Q

What is the capability of the Willow Garage PR2 robot?

A

To recognize different kinds of drinks and deliver them to people on command

25
Q

What technology is modern object recognition best accomplished with?

A

Deep learning

26
Q

What is a practical application of object recognition technology?

A

Automatically tagging people in photo collections

27
Q

True or False: Object recognition technology can enable computers to interact more naturally with their users.

28
Q

What makes classification more challenging in the presence of missing inputs?

A

The computer program cannot guarantee that every measurement in its input vector will always be provided.

29
Q

What must the learning algorithm define when inputs are missing?

A

A set of functions corresponding to classifying with different subsets of inputs missing.

30
Q

In which field does the issue of missing inputs frequently arise?

A

Medical diagnosis.

31
Q

What is one method to define a large set of classification functions efficiently?

A

Learn a probability distribution over all relevant variables and marginalize out the missing variables.

32
Q

How many different classification functions can be obtained with n input variables?

A

2^n different classification functions.

33
Q

What does the computer program need to learn to handle missing inputs?

A

A single function describing the joint probability distribution.

34
Q

True or False: Classification with missing inputs is a unique example of machine learning applications.

35
Q

Fill in the blank: Classification with missing inputs is just one example of what ______ can do.

A

machine learning

36
Q

Who provides an example of a deep probabilistic model applied to classification with missing inputs?

A

Goodfellow et al. (2013b)

37
Q

What is regression in machine learning?

A

A type of task where the program predicts a numerical value given some input.

The learning algorithm outputs a function f : Rn →R.

38
Q

How does regression differ from classification?

A

The format of output is different; regression outputs numerical values while classification outputs categories.

Both are types of supervised learning tasks.

39
Q

Give an example of a regression task.

A

Prediction of the expected claim amount for insurance premiums or future prices of securities.

These predictions are also used in algorithmic trading.

40
Q

What is transcription in machine learning?

A

The task of transcribing unstructured data into discrete textual form.

Examples include optical character recognition and speech recognition.

41
Q

What is an example of transcription?

A

Optical character recognition where a photograph of text is converted into ASCII or Unicode format.

Google Street View uses this technology to process address numbers.

42
Q

What role does deep learning play in speech recognition?

A

It is a crucial component of modern speech recognition systems.

Major companies like Microsoft, IBM, and Google utilize deep learning for this purpose.

43
Q

What is machine translation?

A

The task where a sequence of symbols in one language is converted into a sequence of symbols in another language.

Commonly applied to natural languages, such as translating English to French.

44
Q

How has deep learning impacted machine translation?

A

Deep learning has recently begun to have an important impact on this kind of task.

Notable advancements have been made by researchers like Sutskever et al. and Bahdanau et al.

45
Q

What is the definition of structured output tasks?

A

Tasks involving output as a vector or data structure with important relationships between elements

46
Q

What broad category do structured output tasks include?

A

Transcription and translation tasks, among others

47
Q

What is an example of structured output tasks in natural language processing?

A

Parsing a natural language sentence into a tree structure

48
Q

What does parsing involve?

A

Mapping a natural language sentence into a tree by tagging nodes as verbs, nouns, etc.

49
Q

What is an example of structured output tasks in image processing?

A

Pixel-wise segmentation of images

50
Q

What is the purpose of pixel-wise segmentation?

A

Assigning every pixel in an image to a specific category

51
Q

How can deep learning be applied to aerial photographs?

A

By annotating the locations of roads

52
Q

What is image captioning?

A

A task where a program observes an image and outputs a natural language sentence describing it

53
Q

What is required for the output of image captioning?

A

The words must form a valid sentence

54
Q

Why are these tasks called structured output tasks?

A

Because the program must output several interrelated values