Deep Learning Flashcards

1
Q

Precision

A

The fraction of positives that are true positives

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

Recall

A

The fraction of true positives that were flagged as positives

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

Formula for F-score

A

2(precision * recall) / (precision + recall)

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

In convolution, what is the stride value?

A

How many pixels the filter is moved to the right after each step

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

What does a pooling layer do?

A

Reduces the size of the image to speed up computation

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

What is semantic segmentation?

A

When every pixel in an image is categorised into a class

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

What is instance segmentation?

A

Identifying and separating individual objects within an image

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

What is panoptic segmentation?

A

Combines semantic segmentation and instance segmentation to provide a comprehensive understanding of the scene. In a given image, every pixel is assigned a semantic label, and pixels belonging to “things” classes (countable objects with instances, like cars and people) are assigned unique instance IDs.

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

What are the two types of supervised learning

A

Regression and classification

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

What is a fully connected layer?

A

When a layer in a neural network takes every possible parameter as input. In computer vision, that would mean every pixel in an image.

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

What is a locally connected layer?

A

When a layer in a neural network takes in only part of the total parameters as input. In computer vision, that would mean an area in an image.

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

List 3 uses for deep learning in computer vision

A

Classification
Segmentation
Detection

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

What is a loss function?

A

A function that maps an event or values of one or more variables onto a real number intuitively representing some “cost” associated with the event.

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

What is an activation function?

A

A node in a neural network. Calculates the output of the node based on the inputs and weights.

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

List 4 types of activation function

A

Identity
Threshold
ReLU (Rectified Linear Unit)
Sigmoid

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

What is average pooling?

A

When you take the average value in the pooling window

17
Q

What is max pooling?

A

When you take the highest value in the pooling window