nov 12
homework
From author's solutions :
Jim's Bayes spam classification - results
neural nets
- see pgs 736 and following in text
- networks are
- feed-forward (i.e. signal propogates from input to output)
- well studied
- well understood, though math gets involved
- trainable perception systems
- recurrent (i.e. signal propogates in loops; outputs feed back to inputs)
- can have memory (i.e. current state depends on past history)
- closer to model of brain
- much harder to understand
- but see
- Network implementation
- Weights(i,j) are numbers that describe connection strength from node i to node j.
- nonlinear threshold function g()
- output of node i is
- digit recognition example
final projects