Lecture 8 - Neural Networks Flashcards
strength of synapse has what effect?
stronger = bigger effect of each incoming pulse on the pulse rate of the downstream cell
how do we model neurons?
weighted sum -> non-linearity
how to model non-linearity?
use sigmoid function
sigmoid function is ___ increasing
monotonic
what do we use to get sigmoid function?
hyperbolic tangent equation
why do we use nonlinear functions to model neurons?
- realistic
- combine into versatile networks (perform any function, not just linear ones)
how is the function that the nework computes changed?
function depends on WEIGHT
networks of sigmoid cells are _____ approximators. What does this mean?
universal;
these networks can compute any continuous function, given enough cells
how to find out how many synapses there are in layers 1, 2, and 3?
e.g. 8-3-5
multiply layer 1 x 2
multiply layer 2 x 3
add results together
e.g. 24 + 15 = 39