Föreläsning 7 (Neural networks 1) Flashcards

1
Q

What is the artificial analogy of this feature of biological neural nets:
Each neuron sends one electric
pulse

A

Input neurons

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

What is the artificial analogy of this feature of biological neural nets:
Electrical pulse from the input
neuron is passed on
(propagated) through axon &
axon terminals

A

Connections

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

What is the artificial analogy of this feature of biological neural nets:
Strength of synapses
determine influence of
input signals on action
potential

A

Weights

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

What is the artificial analogy of this feature of biological neural nets:
Neuron receiving electrical pulse

A

Output neurons

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

What is the artificial analogy of this feature of biological neural nets:
Electrical activity in the
soma that if above a
”threshold” outputs an
electric pulse

A

Activation function

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

What is the simplest type of ANN?

A

Single-layer perceptron

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

What is the formula to calculate activation value based on the dot product?

A

𝑥1 ∗ 𝑤1 + 𝑥2 ∗ 𝑤2
x=input value, w=weights
(detta är för exempel 2 inputneuroner, men man plussar alltså summan av input * vikt för alla neuroner)

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

How do you know if you need to update the weights?

A

1) Compare:
* network output y (ANN prediction), to
* expected output t (ANN target)
2) Update:
* the weights update of the network is
proportional to the network error (t – y)

If the network is working as predicted you don’t need to update the weights!

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

What problems can a SLP solve?

A

Simpler classification and regression tasks (supervised learning)

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

Vilka två alternativ kan vi välja mellan att träna enkla ANN:s med?

A
  • Manually select the weight values
    ourselves
  • Use a learning /training rule
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Vad är inlärningsregeln för perceptroner?

A

w’ = w + αx(t-y)

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