chapter 2 Flashcards
a multilayer neural network consists of
- Layers
of perceptron-like simulated neurons - Units
= the simulated neurons
> Hidden unit = a non-output unit
each input has a weighted connection to each hidden unit, and each hidden unit has a weighted connection to each output unit
deep networks
a multilayer network with multiple layers of hidden units; networks that have more than one layer of hidden units
The “depth” of a network is simply its number of hidden layers.
what does a unit do
each unit multiplies each of its inputs by the weight on that input’s connection and then sums the results
unlike in a perceptron, a unit here doesn’t simply “fire” or “not fire” 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.”
these activation values then become the inputs for the output units, which then compute their own activations.
the network’s confidence
the activation of an output unit
classification
the digit category with the highest confidence can be taken as the network’s answer - it’s classification
backpropagation
a way to take an error observed at the output units and to “propagate” the blame for that error backward so as to assign proper blame to each of the weights in the network
to determine how much to change each weight in order to reduce the error
learning in neural networks
gradually modifying the weights on connections so that each output’s error gets as close to 0 as possible on all training examples.
connectionist networks
In the 1980s, what we now call neural networks were then generally referred to as connectionist networks
the term connectionist refers to the idea that knowledge in these networks resides in weighted connections between units.
According to the proponents of connectionism, the key to intelligence was
- an appropriate computational architecture—inspired by the brain
- the ability of the system to learn on its own from data or from acting in the world.
good old-fashioned AI, or GOFAI
Machine-learning researchers disparagingly referred to symbolic AI methods as good old-fashioned AI, or GOFAI and roundly rejected them.