Perceptron fact(a1, . . ., am) = sig (a1, , am)

Slides:



Advertisements
Similar presentations
Giving Feedback. The right and the wrong. >> giving feedback
Advertisements

Using the What Am I Template Copy the presentation to your hard drive. Open the slides using slide sorter and copy slides #3, 4 and 5 for each question.
9 x9 81 4/12/2015 Know Your Facts!. 9 x2 18 4/12/2015 Know Your Facts!
1 x0 0 4/15/2015 Know Your Facts!. 9 x1 9 4/15/2015 Know Your Facts!
1 x0 0 4/16/2015 Know Your Facts!. 1 x8 8 4/16/2015 Know Your Facts!
NEURAL NETWORKS Perceptron
3 x0 0 7/18/2015 Know Your Facts!. 4 x3 12 7/18/2015 Know Your Facts!
Contraction Treasure Chest English SOL 2.6b Directions: Choose the correct key to unlock the treasure chest. Click to begin!
CLICK HERE TO ADD SLIDE PRESENTATION TITLE CLICK HERE TO ADD SUBTITLE.
NNs Adaline 1 Neural Networks - Adaline L. Manevitz.
First Category Second Category Third Category Fourth Category $100$200$300$100 $200 $300.
Kindergarten Math Fact Fluency Goal
Order of Operations Arizona State 8 th Grade Math Standard – Strand 1, Concept 2, PO5 Simplify numerical expressions using the order of operations that.
Main Menu First question wrong Second Question correct Keep up the good Work ! Third question Try again wrong Fourth question correct Fifth question You.
Explorations in Neural Networks Tianhui Cai Period 3.
4 x1 4 10/18/2015 Know Your Facts!. 5 x /18/2015 Know Your Facts!
3 x0 0 10/18/2015 Know Your Facts!. 11 x /18/2015 Know Your Facts!
TO2.0 Participant name... Answer Sheet First value Second value Third value Fourth value y 1 = €.... y 2 = €.... y 3 = €.... y 4 = €....
Sentence Structure Jeopardy!
$1,000,000 $500,000 $100,000 $50,000 $10,000 $5000 $1000 $500 $200 $100 Is this your Final Answer? YesNo Question 2? Correct Answer Wrong Answer.
Practice Woot woot. Vocabulary list 1 New Dog Cat Want Possessive pronoun Concept Homework Need Don’t know Girl What Ready Later Meet.
Multiplication Facts. 9 6 x 4 = 24 5 x 9 = 45 9 x 6 = 54.
Five frogs are living in the small pond. They want to come out. First frog jump out of the pond The second frog jump out of the pond The third frog.
Using force meters Click on the type of force meter that you are going to use.
The Smart board Quiz Change the title and put intro information here.
“Click for Instruction “Click here to play.” If you select the correct answer, you will continue to the next question. If you the wrong answer, you will.
Factorization : Difference of Two Squares and Perfect Squares.
Day 1 - Daily Math Review. Day 2 - Daily Math Review.
1. What is the correct answer ……. Quantities A. Scottish B. Scalar C. Scalea.
First pass Second pass Third pass (no swaps) 1. Compare first two items 2. Correct order? Leave them 3. Not in correct order? Swap them 4. Compare next.
Title East Coast City to West Coast City. Make and Model of Vehicle Gas mileage (average)
Multiplication Facts All Facts. 0 x 1 2 x 1 10 x 5.
Using the Correct Order Template Copy the presentation to your hard drive. Open the slides using slide sorter and copy slides #3, 4, and 5 for each question.
Multiplication Facts.
The Life Cycle of a Butterfly
6 Figure Grid Map skills Quiz Reference Quiz
Perceptron Learning Demonstration
Significant Figure Review
Click to edit Master text styles
Biological Neuron Cell body Dendrites Axon Impulses Synapses
Click to edit Master text styles
I don’t endorse smoking. Even smokers will tell
Regents Practice Part A and B1 August 2011 Exam.
Learn Your 2x Facts.
Click to edit Master text styles
ОПШТЕСТВО ТЕМА: МЕСТОТО ВО КОЕ ЖИВЕАМ Скопје
Assessing Multiplication Fact
SQUADS #2 CPW25 “10th Grade Math”
Quiz Name Here Click to start.
Quiz Name Here Click to start.
Metric System SOL 6.9.
Perceptron Algorithm.
Multiplying By 3 Third Grade.
Click to edit Master text styles
SQUADS #2 CPW32 “9th Grade Math”
SQUADS #2 CPW25 “9th Grade Math”
THE BEST IS YET TO COME.
½ of 6 = 3.
Presentation Title Presenter’s Name.
SQUADS #2 CPW32 “10th Grade Math”
Lecture 5 Dynamic Programming
David Kauchak CS51A Spring 2019
SQUADS #2 CPW32 “11th Grade Math”
Bell Schedule for First Two Weeks of School
Click to edit Master text styles
Evidence 3 After reading the method of this study, four 7th graders drew what the scientists had put in each jar. For each of the next four drawings,
Halves, Thirds and Fourths! Fraction Fantastic!
Presentation transcript:

Perceptron fact(a1, . . ., am) = sig (a1, . . . , am) flearn(w0j1,old, d, x011 … x0k, c) = w0j1,old + c * (d – sig(xoi * w0i)) * xoi c=0.2

Perceptron Consider a perceptron with 3 input nodes x01, x02 and x03 w011 = 0.3, w021 = 0.4 and w031 = -0.3 Input (1,1,1)  1 (3.2, 1.4, 9.1)  -1 (8, 7.7, 3.1)  -1 (1.5, 2.4, 5.5)  1

x01 w011 x02 x11 w021 w031 x03

First Data Item w011 = 0.3, w021 = 0.4 and w031 = -0.3 Input (1,1,1)  1 fact = sig(1*0.3 + 1*0.4 + 1*-0.3) = sig(0.4) = 1 Correct! No change

Second Data Item w011 = 0.3, w021 = 0.5 and w031 = -0.3 Input (3.2, 1.4, 9.1)  -1 fact = sig(3.2 * 0.3 + 1.4*0.4 + 9.1*-0.3) = sig(0.96 + 0.56 + -2.73) = sig(-1.85) = -1 Correct! No change

Third Data Item w011 = 0.3, w021 = 0.4 and w031 = -0.3 Input (8, 7.7, 3.1)  -1 fact = sig(8 * 0.3 + 7.7 * 0.4 + 3.1 * -0.3) = sig(2.4 + 3.08 + -0.93) = sig(4.55) = 1 Wrong! Change!

Change the weights w011,new = 0.3 + 0.2 * -2 * 8 = -2.9

Fourth Data Item w011 = -2.9, w021 = -2.58 and w031 = -1.54 Input (1.5, 2.4, 5.5)  1 fact = sig(1.5 * -2.9 + 2.4 * -2.58 + 5.5 * -1.54) = sig(-4.35 + -6.19 + -8.47) = sig(-19.01) = -1 Wrong! Change!

Change the weights w011,new = -2.9 + 0.2 * 2 * 1.5 = -2.3

Begin Again : First Data Item w011 = -2.3, w021 = -1.62 and w031 = 0.66 Input (1,1,1)  1 fact = sig(1*-2.3 + 1*-1.62 + 1*0.66) = sig(-3.26) = -1 Wrong! Change!

Change the weights w011,new = -2.3 + 0.2 * 2 * 1 = -1.9

Begin Again : Second Data Item w011 = -1.9, w021 = -1.22 and w031 = 1.06 Input (3.2, 1.4, 9.1)  -1 fact = sig(-1.9*3.2 + -1.22*1.4 + 9.1*1.06) = sig(-6.08 + -1.71 + 9.646) = sig(1.856) = 1 Wrong! Change!

Change the weights w011,new = -1.9 + 0.2 * -2 * 3.2 = -3.18

Begin Again : Third Data Item w011 = -3.18, w021 = -1.78 and w031 = -2.58 Input (8, 7.7, 3.1)  -1 fact = sig(8*-3.18 + 7.7*-1.78 + 3.1*-2.58) = sig(-25.44 + -13.71 + -8.00) = sig(-47.15) = -1 Correct! Don’t Change!

Begin Again : Fourth Data Item w011 = -3.18, w021 = -1.78 and w031 = -2.58 Input (1.5, 2.4, 5.5)  1 fact = sig(1.5*-3.18 + 2.4*-1.78 + 5.5*-2.58) = sig(-4.77 + -4.27 + -14.19) = sig(-23.23) = -1 Wrong! Change!

Change the weights w011,new = -3.18 + 0.2 * 2 * 1.5 = -2.58