Chapter 2 Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

In a perceptron with two columns (layers) of perceptron-like simulated neurons (units), uses a 18 x 18 pixel image, a layer of three so-called hidden units, along with its layer of ten output units, each corresponding to one of the possible digit categories. How many inputs are there?

A

324 (18 × 18) inputs, each of which is set to the intensity value of the corresponding pixel in the input image.

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

Describe the connections of a multilayered neural network

A

Each input has a weighted connection to each hidden unit, and each hidden unit has a weighted connection to each output unit.

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

Why is a network known as multilayered?

A

because it has two layers of units (hidden and output) instead of just an output layer.

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

What are deep networks?

A

In principle, a multilayer network can have multiple layers of hidden units; networks that have more than one layer of hidden units are called deep networks. The “depth” of a network is simply its number of hidden layers.

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

How are the units similar and how do they differ in a multilayered neural network compared to a perceptron?

A

Similar to perceptrons, each unit here multiplies each of its inputs by the weight on that input’s connection and then sums the results. However, unlike in a perceptron, a unit here doesn’t simply “fire” or “not fire” (that is, produce 1 or 0) based on a threshold; instead, each unit uses its sum to compute a number between 0 and 1 that is called the unit’s “activation.” If the sum that a unit computes is low, the unit’s activation is close to 0; if the sum is high, the activation is close to 1.

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

Describe how the multilayered algorithm would work in processing an image such as a handwritten 8

A

Each hidden unit computes its activation value; these activation values then become the inputs for the output units, which then compute their own activations. The activation of an output unit can be thought of as the network’s confidence that it is “seeing” the corresponding digit; the digit category with the highest confidence can be taken as the network’s answer—its classification.

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