Convalutional Neural networks Flashcards

1
Q

What a re convolutional neural networks specifically designed for?

A

Images

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

What are 4 applications of convolutional neural networks?

A

> Image analysis
Facial recognition
Autonomous driving
Video analysis

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

What is the main feature that differentiates a convolutional neural network from a normal neural network?

A

The location of each pixel is taken into account. A normal neural network doesnt care about the position of pixels

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

How does a convolutional neural netowork work?

A

We apply a filter to the input function and combine the two. We then calculate the result and integrate it

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

What is the standard motion of image filtering?

A

Applying the image filter over the image and calculating the result.
Shifting a pixel to the right and repeating.
At the end of the row, shifting down a pixel and doing it again.

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

After filtering, now what?

A

we take the result of the filter and apply it to the neural network

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

What is padding?

A

The result is often smaller than the image becaus ethe filter restricts the size of the result. Padding adds, data to the outside of the image (either 0s/ 1s or repeating the outer most values). This result is equal to the shape of the original image.

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

What is strides?

A

This is when you change the motion of filtering.

You can iterate through the image different amounts.

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

What can we do to improve image recognition?

A

We can use multiple filters

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

What are the different layer types used in image recognition?

A

> CONV:

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