1 / 3

Ch. 20 – Neural Networks

Ch. 20 – Neural Networks. Supplemental slides for CSE 327 Prof. Jeff Heflin. A Neuron. Perceptron Learning. function PERCEPTRON-LEARNING( examples,network) returns a perceptron hypothesis

gada
Download Presentation

Ch. 20 – Neural Networks

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Ch. 20 – Neural Networks Supplemental slides for CSE 327 Prof. Jeff Heflin

  2. A Neuron

  3. Perceptron Learning function PERCEPTRON-LEARNING(examples,network)returns a perceptron hypothesis inputs:examples, a set of examples with input x and output y network, a perceptron with weights Wj and activation function g repeat for each einexamples doErr y[e] – g(in)Wj  Wj +   Err  g’(in)  xj[e]until some stopping criteria is satisfiedreturn NEURAL-NET-HYPOTHESIS(network) From Figure 20.21, p. 742

More Related