chapter 7 Flashcards

(12 cards)

1
Q

AlexNet

A

is a convolutional neural network for image classification. It consists of five convolutional layers followed by three fully connected layers.

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

CIFAR-10 dataset

A

dataset consists of 60,000 training images and 10,000 test images, each belonging to one of the ten categories airplane, automobile, bird, cat, deer, dog, frog, horse, ship, and truck. All are color images.

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

Translation Invariance

A

one of the most important characteristics of CNN, that the network will be able to recognize the target in any position even if it shifted or rotated. it is achieved by employing weight sharing between neurons as well as making them sparsely connected.

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

Translation

A

is a geometric transformation, it changes the location of an object without changing its shape.

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

The topology of a convolutional layer

A
  • The neurons are arranged in three dimensions.
  • Two of the dimensions correspond to the width and height.
  • The neurons are grouped into channels or feature maps in a third dimension.
  • There are no connections between the neurons within the same convolutional layer
  • all the neurons within a single channel have identical weights (weight sharing), but they will receive different input values.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Convolutional kernel

A

The operation that each neuron in a convolutional layer implements.

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

Receptive field

A

The region of pixels from which a neuron receives inputs.

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

Stride

A

is the number of pixels shifts over the input matrix (image).

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

padding

A

The process to adding some extra pixels with zeros outside the image.

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

A convolutional layer

A

consists of multiple channels or feature maps. All
neurons within the same channel share weights.

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

Sparse connections

A
  • reduce the total number of weights.
  • reduce the number of computations.
  • reduce the number of weights to store.
  • reduce the number of weights to learn
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Weight sharing

A

reduces the number of unique weights and thereby reduces the number of weights to store and to learn.

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