3 Pages

Tutorial11-solutions

Course: COMP 3702, Fall 2009
School: Allan Hancock College
Rating:
 
 
 
 
 

Word Count: 807

Document Preview

11: Tutorial Neural networks Question 1 3 inputs, 1 bias, 1 output, logistic (sigmoid) or threshold activation function. Pattern -> Calculation -> Function -> Output 1 -> u = 1*0 + -2*-1 + 2*.5 - .5 = 2.5 -> threshold -> output = 1 2 -> u = 2.5 -> logistic -> output = 1/(1+exp(-2.5)) ~= 0.9 3 -> u = 0*4 + 1*2 + 2*-1.5 - 1.2 = -2.2 ->...

Register Now

Unformatted Document Excerpt

Coursehero >> California >> Allan Hancock College >> COMP 3702

Course Hero has millions of student submitted documents similar to the one
below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.

Course Hero has millions of student submitted documents similar to the one below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.
11: Tutorial Neural networks Question 1 3 inputs, 1 bias, 1 output, logistic (sigmoid) or threshold activation function. Pattern -> Calculation -> Function -> Output 1 -> u = 1*0 + -2*-1 + 2*.5 - .5 = 2.5 -> threshold -> output = 1 2 -> u = 2.5 -> logistic -> output = 1/(1+exp(-2.5)) ~= 0.9 3 -> u = 0*4 + 1*2 + 2*-1.5 - 1.2 = -2.2 -> threshold -> output = 0 4 -> u = -2.2 -> logistic -> output = 1/(1+exp(2.2)) ~= 0.1 5 -> u = 1*1 + 1*-2 + -2*-1 = 1 -> logistic -> output = 1/(1+exp(-1)) ~= 0.7 6 -> u = 1*1 + 1*-2 + -1*-1 = 0 -> logistic -> output = 1/(1+exp(-0)) = 0.5 7 -> u = 1*1 + 1*-2 + -1*-1 + 1 = 1 -> logistic -> output = 1/(1+exp(-1)) ~= 0.7 Question 2 (example answers) a) W1 = 2, w2 = 2, w0 = b = -3 b) a^b^!c (! = NOT, ^ = AND) Use a single threshold unit with 3 inputs: a, b and c. The given function can be modelled (for 0/1 binary data anyway) by using the following set of weights: 1, 1 and -1 on a, b, and c inputs respectively, with a -1.5 bias weight. a b c w1=1 w2=1 w3=-1 f=threshold y b=-1.5 Question 3 a) X1=[0 0]; hidden unit activation values ui (i=1,2) u1 = 0*-4 + 0*4 +2 = 2 ; h1 = 1/(1+exp(-u1)) ~= 0.88 u2 = 0*-5 + 0*5 -3 = -3 ; h2 = 1/(1+exp(-u2)) ~= 0.047 output unit activation value z z = 0.88*-4 + 0.047*3 +2 = -1.38 ; o (output) = 1/(1+exp(-z)) ~= 0.20 This is <0.5 , so counts as class 0. X2=[0 1] u1 = 0*-4 + 1*4 +2 = 6 ; h1 = 1/(1+exp(-u1)) ~= 0.998 u2 = 0*-5 + 1*5 -3 = 2 ; h2 = 1/(1+exp(-u2)) ~= 0.88 z = 0.998*-4 + 0.88*3 +2 = 0.648; o (output) = 1/(1+exp(-z)) ~= 0.657 This is >0.5 , so counts as class 1. X3=[1 0] u1 = 1*-4 + 0*4 +2 = -2 ; h1 = 1/(1+exp(-u1)) ~= 0.12 u2 = 1*-5 + 0*5 -3 = -8 ; h2 = 1/(1+exp(-u2)) ~= 0.00034 z ~= 0.12*-4 +2 = 1.52 ; o (output) = 1/(1+exp(-z)) ~= 0.821 This is >0.5 , so counts as class 1. X4=[1 1] u1 = 1*-4 + 1*4 +2 = 2 u2 = 1*-5 + 1*5 -3 = -3 -> same as X1 z = 0.88*-4 + 0.047*3 +2 = -1.38 ; o (output) = 1/(1+exp(-z)) ~= 0.20 This is <0.5 , so counts as class 0. b) Decision boundary is at: o (output) = 1/(1+exp(-z)) = 0.5 -> multiply both sides by 2(1+exp(-z)) 2 = 1 + exp(-z) -> exp(-z)=1 -> take logs of both sides (base e) -z = 0 -> z=0 z = -4h1+3h2+2 = 0 -> h2 = 4/3 h1 - 2/3. I'll leave it to you to plot this straight line. Given that h1 and h2 are constrained to fall in the range [0,1], there is no point in going beyond this on this plot. Re: translating this back into the input space. Too hard. One could assume that h1=0.5 was meaningful and translate that back a into decision boundary in the x1,x2 space (similarly for h2). But it really isn't meaningful - the only decision is at the output. The following is too much for this course (so feel free to ignore if studying for the exam), but some idea of how to get an output-based decision boundary right back to the inputs (through the hidden layer) follows: -4h1+3h2+2=0 (a straight line) (eqn 1). h1=g(-4x1 + 4x2 + 2) ; h2=g(-5x1+5x2-3) . Let theta = x2-x1 in the above eqn, then put the h1 and h2 terms into eqn 1. Call the result eqn 2. Since g(x) is a sigmoid = 1/(1+e{-x}) , there are a couple of terms in the denominators of fractions. Multiply eqn 2 by each of these denominators and I get a few terms - the most complex involve e^{theta}. I let phi = e^{theta}, and the decision boundary equation reduced to the following: 1+5e2 phi^4 + 2 e^{-3}phi^5 + 2e^{-1}phi^9 = 0. If one solved this numerically, I imagine it would produce a range of values for phi. If one solution was phi1, then we could phrase that as an equation in x1 and x2 . As far as I can tell, it would just result in a straight line of the form x2 = x1+log(phi1) . I'm not sure which sides of the boundary would be which class. Given the multiple solutions, there would probably be a few of these lines though, making the class structure quite complex. Note: this network was unusually easy (!) to analyse because the input weights were similar for h1 and h2. In general, you would get harder equations to solve and probably no straight lines. Question 4 Classification: ...

Find millions of documents on Course Hero - Study Guides, Lecture Notes, Reference Materials, Practice Exams and more. Course Hero has millions of course specific materials providing students with the best way to expand their education.

Below is a small sample set of documents:

Concordia Canada - COEN - 315
A Tutorial on Using Hspice and Awaves as a Standalone ToolDept. of Electrical and Computer Engineering Concordia University Montreal, Quebec CanadaBy Ted Obuchowicz VLSI/CAD Specialist Concordia UniversityDecember 10, 1997 Revised: January 4, 2
Laurentian - MGT - 4451
Chapter Fourteen Swap Pricing Answers to Problems and Questions 1. If the options are European style you can use the put/call parity model with C P = 0, meaning K = S (1+R)T. Here we have K = 28.55 x (1.055)0.5 = 29.32 If the options are American st
East Los Angeles College - HERT - 1886
Katie Kingwell Exeter College How has Herceptin changed the treatment of breast cancer, and what changes is it likely to effect in the future? Human epidermal growth factor receptor-2 (HER2) belongs to a family of four transmembrane receptor tyrosine
East Los Angeles College - CV - 6505
Environmental Noise Control 2005Coursework (French student cohort)Monitoring of Traffic NoiseIntroduction Noise from transport has become a major pollutant of the outdoor urban environment.The levels of noise cannot be any longer ignored by high
East Los Angeles College - CV - 6505
Environmental Noise ControlLecture 31. To learn about the effects of noise on speech illegibility.Objectives2. To learn about the effects of noise on sleep. 3. To learn about the assessment of noise using the noise rating and noise criterion
East Los Angeles College - CV - 6505
Environmental Noise ControlLecture 41. To learn about the various factors which can affect sound propagation.Objectives2. To learn about the general standard method of calculation of sound propagation outdoors ISO 9613-2. 3. Gain experience i
East Los Angeles College - CV - 6505
Environmental Noise ControlLecture 7Objective1. To learn about the sources of railway noise 2. To learn about the standard UK prediction method Calculation of Railway Noise (CRN).Railway NoiseThere are no regulations to control noise emissi
East Los Angeles College - CV - 6505
Lecture 10: Noise Attenuation Provided by Highway Noise BarriersNoise Attenuation Provided by Highway Noise Barriers Email: K.Horoshenkov@bradford.ac.uk1Presentation Overviewn n n nDefinitions of barrier attenuation Performance of noise barr
East Los Angeles College - NG - 1028
East Los Angeles College - CV - 6505
Environmental Noise ControlLecture 8Objective1. To learn about the Environmental Protection Legislation 2. To learn about the standard UK prediction method Noise Control on Construction and Open Sites (BS 5228).Environmental Law in the UKFo
East Los Angeles College - CV - 6505
Introduction to Environmental Noise Control (ENG3000M)Aims: To gain a knowledge of the basic principles of acoustics and to study the mechanisms of generations, assessment and abatement of various forms of environmental noise. To become familiar wit
Allan Hancock College - CHEE - 4002
CHEE4002 Course ProfilePage 1 of 8CHEE4002: Environmental Risk AssessmentSchool of Engineeringhttp:/www.eng.uq.edu.au 2 Units, Internal, St Lucia Handbook description: Incorporation of the broader issues of sustainability &amp; environmental impact
East Los Angeles College - CV - 6505
Environmental Noise ControlCalculation and Rating of Industrial Noise Affecting a Residential AreaObjectivesThe purpose of the exercise is a) to carry out an assessment of the sound power levels of a metal crushing plant; b) to calculate the LAeq
Allan Hancock College - MATE - 4000
MMME4302: Course Profile BuilderMMME4302: Environmental Performance of Materials 1. Course Details1.1 Summary Course Code MMME4302 Course Title Environmental Performance of Materials School School of EngineeringUnits 2 Campus St Lucia Mode Inter
Allan Hancock College - CHEE - 3003
CHEE3003 Course ProfilePage 1 of 8CHEE3003: Process Engineering Thermodynamicshttp:/www.uq.edu.au/~uqthowes/chee3003/School of Engineeringhttp:/www.eng.uq.edu.au 2 Units, Internal, St Lucia Handbook description: 1st and 2nd laws of thermodyna
Allan Hancock College - SAOWB - 2005372
House of Assembly No 141As laid on the table and read a first time, 21 September 2005South AustraliaStatutes Amendment (Reuse of Water) Bill 2005A Bill ForAn Act to amend the Natural Resources Management Act 2004, the Public andEnvironment
Allan Hancock College - CIVL - 3420
CIVL3420 Course ProfilePage 1 of 8CIVL3420: Transportation Systems Engineeringhttp:/www.uq.edu.au/dia/civl3420-download.htmlSchool of Engineeringhttp:/www.eng.uq.edu.au 2 Units, Internal, St Lucia Handbook description: Principles of road desi
Allan Hancock College - CIVL - 4440
CIVL4440 : Course Profile Builder: CIVL4440 : Intelligent Transportation Systems 1. Course Details1.1 Summary Course Code CIVL4440 Course Title Intelligent Transportation Systems School School of EngineeringUnits 2 Campus St Lucia Mode Internal
Allan Hancock College - CHEE - 4020
Biotechnol. Appl. Biochem. (2004) 40, 8994 (Printed in Great Britain)89An improved, inexpensive procedure for the large-scale purication of recombinant human erythropoietinYunlong Hu*1 , Song Chen, Mei Xu and Shuangquan Zhang**Academy of Life S
Allan Hancock College - ARTT - 2102
ARTT2102 TUTORIAL:WEEK7 NARRATIVE;DISGUISEDSYMBOLISM?Jan van Eyck (c.1395-1441), Giovanni di Nicolao Arnolfini and Costanza Trenta Arnolfini, 1434. Oil on panel, 82.2 x 60 cm. Collection National Gallery, LondonPerspective analysis of the Arnolfi
Allan Hancock College - LAW - 1984
38MLAANZ JournalSome Comments on the Liability of a Ship's Agent393. ARTICLES AND PAPERSA. SOME COMMENTS ON THE L I A B I L m OF A SHIP'S AGENT By CAPTAIN IAN McKAYCaptain lan McKay of McKay Shipping Limited in Auckland, New Zealand - himse
Allan Hancock College - LAW - 1987
Salvage and the environmentBrian Makins * Peter McQueen * Brian White *This is the text of a paper presented to the thirteenth annual MLAANZ Conference at Maui between 17-22 November I986.I. INTRODUCTION It is noteworthy that in this Internation
Allan Hancock College - IGPAB - 1999479
QueenslandINTERACTIVE GAMBLING (PLAYER PROTECTION) AMENDMENT BILL 1999 Queensland INTERACTIVE GAMBLING (PLAYER PROTECTION) AMENDMENT BILL 1999
Allan Hancock College - WMAEO - 8220092009
The legislation that is being viewed is valid for Sessional.Water Management (Watercourse Authority Exemption) Order 2009 (S.R. 2009, No. 6)-- CONTENTS
Allan Hancock College - CISAA - 200317
The legislation that is being viewed is valid for Sessional. Construction Industry (Long Service) Amendment Act 2003 (No. 17 of 2003)- CONTENTS Construction Industry (Long Service) Amend
Allan Hancock College - PILACCAR - 200342003
PRIMARY INDUSTRIES LEVIES AND CHARGES COLLECTION AMENDMENT REGULATIONS 2003 (NO. 4) 2003 NO. 140 PRIMARY INDUSTRIES LEVIES AND CHARGES COLLECTION AMENDMENT REGULATIONS 2003 (NO. 4) 2003 NO. 140 - TABLE OF PROVISIONS1. Name of Regulations 2.
Allan Hancock College - SACTASWRB - 2007802
Legislative Council-No 63As introduced and read a first time, 12 September 2007South AustraliaStatutes Amendment (Water Conservation Targetand Sustainable Water Resources) Bill 2007A BILL FORAn Act to amend the Public Corporations Act 1993,
Allan Hancock College - WAWIPB - 2006579
PARLIAMENT OF VICTORIA Water Amendment (Critical Water Infrastructure Projects) Bill 2006 TABLE OF PROVISIONSClause Page
Allan Hancock College - ESAR - 2002126
ELECTRICITY SAFETY AMENDMENT REGULATIONS 2002 (NO 1) (NO 26 OF 2002) - made under the Electricity Safety Act 1971 - TABLE OF PROVISIONS1. Name of regulations 2. Commencement 3. Regulations amended 4. New regulations 7 and 8 7. E
Allan Hancock College - ERTH - 3502
Ore Deposit Geology and Mineralogy Silicate mineralogyArkansas quartz crystalSilicate crystal structuresSilicates are the major rock forming minerals that can be divided broadly into the ferromagnesian and nonnonferromagnesian silicates. The rad
Allan Hancock College - ERTH - 3502
ERTH3502Introduction to Ore-forming ProcessesLecture 7Surface and subsurface environments of ore formation:Involving magmas crystal fractionation (chromite ores) immiscible magma separation (nickel sulfide ores) Involving water hydrothermal
Allan Hancock College - ERTH - 3212
ERTH3212 GEOLOGY OF CORAL REEFSThe Great Barrier ReefLength 2000km Width 50-400km Area 250 000km2 No of reefs - ca 3000 Percent reef - &lt; 10%1Capricorn Group2HERON ISLAND AND REEF3Heron Reef4567What is a coral reef?CORAL - f
Allan Hancock College - PPFOB - 2007386
2004-2005-2006-2007The Parliament of theCommonwealth of AustraliaHOUSE OF REPRESENTATIVESPresented and read a first timePrivacy Protection for Off-shoring Bill2007No. , 2007(Ms Burke)A Bill for an Act to amend the Fina
Allan Hancock College - MFAP - 2008389
Published in Gazette 25.9.2008 p 4579South AustraliaMining (Reservation from Act) Proclamation 2008under section 8 of the Mining Act 19711-Short title This proclamation may be cited as the Mining (Reservation from Act) Proc
Allan Hancock College - PEATAR - 200012000
PUBLIC EMPLOYMENT (CONSEQUENTIAL AND TRANSITIONAL) AMENDMENT REGULATIONS 2000 (NO. 1) 2000 NO. 332 PUBLIC EMPLOYMENT (CONSEQUENTIAL AND TRANSITIONAL) AMENDMENT REGULATIONS 2000 (NO. 1) 2000 NO. 332 - TABLE OF PROVISIONS1. Name of Regulations
Allan Hancock College - PUTNCA - 20022004
The legislation that is being viewed is valid for Sessional. Proclamation under the Nature Conservation Act 2002 (S.R. 2004, No. 53)- CONTENTS Proclamation under the Nature Conservation
Allan Hancock College - WMCTWAR - 20042004
The legislation that is being viewed is valid for Sessional. Water Management (River Clyde Temporary Water Allocation) Regulations 2004 (S.R. 2004, No. 90)-- CONTENTS
Allan Hancock College - CSSE - 3000
CSSE3000 Digital System Design I1TUTORIAL 4 FSM DESIGN PRACTICEA. Deriving State Diagrams from informal behaviour specification1. Develop a state diagram for a synchronous Moore machine that produces a 1 at its single output F when there was a
Allan Hancock College - TLA - 200573
Treasury Legislation (Repeal) Act 2005 Act No. 73/2005 table of provisionsSection Page 1. Purposes 1 2. Commencement 2 3. Repeal of spent Acts 2 4. Amendment
Brookdale - ECED - 4402
Dalhousie University Department of Electrical and Computer EngineeringECED 4402 Real Time Systems Assignment 4: Real Time Programming IObjectivesIn this assignment, you are to write a simple foreground/background real time system that allows a u
Allan Hancock College - CSSE - 1000
The University of Queensland - School of Information Technology and Electrical EngineeringCSSE1000 / CSSE7035 Introduction to Computer Systems Answers to Exercises Week Nine Flow of Control, InterruptsAnswers 1. Write a procedure (in Atmel AVR a
Allan Hancock College - COMP - 1500
Week 5 Coding and Using MethodsThis WeekLecture: More on data types &amp; Coding and using methods Java Genesis: Ch6: Methods Quick Quiz for Chapter 512Primitive types (e.g. integer)int x 5trying to swap primitive values. int x = 5; int y =
Purdue - ICS - 671
Instrumental Variables #2Econ 671Purdue UniversityApril 1, 2009Justin L. Tobias (Purdue)Instrumental Variables #2April 1, 20091 / 21In the last lecture we introduced the IV estimator. In that discussion, we supposed there were just as m
Allan Hancock College - COMP - 1500
Java Genesis Chapter 4 Challenge ProblemsProblem 1: trailing zeros of factorialsWrite a Java program to compute the number of trailing zeros (i.e. the number of zero digits at the end) of n! (n factorial). For example, 10! = 3628800 and hence 10!
Allan Hancock College - COMP - 2304
COMP2304 Assignment 3Summary: Due date: Marks: Deliverables: 5/10/08 25 shapefinder.cpp, students.cpp, logger.cpp, except.cppRevision history: Revision 1.0 Date 14-09-2008 Color BlackBefore starting: Read the assignment guide: http:/www.itee.uq.
Allan Hancock College - CSSE - 3000
CSSE3000 Digital System Design I1TUTORIAL 5 Sequential Logic design1. A Moore machine has one input and one output. The output should be 1 if the total number of 0's received at the input is odd and the total number of 1's received is an even nu
Allan Hancock College - CSSE - 3000
CSEE3000 Digital Design I1TUTORIAL 91. Design a simple RAM memory system organised as 128k x16 bits made of 32kx4 bit chips. The RAM system must have a common data input/output bus. The organization of the 32kx4 chip together with a short functi
Allan Hancock College - UTAB - 2007250
2007THE LEGISLATIVE ASSEMBLY FOR THE AUSTRALIAN CAPITAL TERRITORY(As presented) (Minister for Planning)Unit Titles Amendment Bill 2007ContentsPage1 2 3 4 5 6 7 8 9Name of Act Commencement Legislation amended Unit title applications-gener
Allan Hancock College - UTAB - 2007250
2007 THE LEGISLATIVE ASSEMBLY FOR THE AUSTRALIAN CAPITAL TERRITORY (As presented)
Allan Hancock College - VEAWWAWWPB - 2007807
2004-2005-2006-2007The Parliament of theCommonwealth of AustraliaHOUSE OF REPRESENTATIVESPresented and read a first timeVeterans' Entitlements Amendment(Disability, War Widow and WarWidower Pensions) Bill 2007No. , 2007(V
Allan Hancock College - VEAWWAWWPB - 2007807
2004-2005-2006-2007 The Parliament of the Commonwealth of Australia HOUSE OF REPRESENTATIVESPresented and read a first timeVeterans Entitlements Amendment (Disability, War Widow and War Widower Pensions) Bill 2007 No. , 2007(Veterans Affairs)
Allan Hancock College - FLAFOB - 2006509
2004 - 2005 - 2006THE PARLIAMENT OF THE COMMONWEALTH OF AUSTRALIAHOUSE OF REPRESENTATIVESFISHERIES LEGISLATION AMENDMENT (FOREIGN FISHING OFFENCES) BILL 2006EXPLANATORY MEMORANDUM(Circulated by authority of the Minister for Fisheries, Fores
Allan Hancock College - CAR - 200312003
CRIMES AMENDMENT REGULATIONS 2003 (NO. 1) 2003 NO. 165 CRIMES AMENDMENT REGULATIONS 2003 (NO. 1) 2003 NO. 165 - TABLE OF PROVISIONS1. Name of Regulations 2. Commencement 3. Amendment of Crimes Regulations 1990 SCHEDULE 1 Amendment
Allan Hancock College - CAYPAB - 2005332
2005 THE LEGISLATIVE ASSEMBLY FOR THE AUSTRALIAN CAPITAL TERRITORY (As presented) (Ministe
Gordon MA - CPS - 311
CS311 Lecture: Procedures Objectives:Last revised 9/25/071. To introduce general issues that any architecture must address in terms of calling/returning from procedures, passing parameters (including the distinction between call by value and call
Allan Hancock College - MPRAB - 2006448
QueenslandMedical PractitionersRegistration AmendmentBill 2006 QueenslandMedical Practitioners RegistrationAmendment Bill 2006Contents
Allan Hancock College - TTPB - 2006528
2006LEGISLATIVE ASSEMBLY FOR THE AUSTRALIAN CAPITAL TERRITORY TERRORISM (EXTRAORDINARY TEMPORARY POWERS) BILL 2006 SUPPLEMENTARY EXPLANATORY STATEMENT
East Los Angeles College - STG - 0607
Multimedia DesignDesign and Usability Affordances, Constraints, Visibility and FeedbackProblem: Client: wants reasonably priced and impressive site User: want a site that's easy to use, free to access, aesthetically appealing, quick to download
Allan Hancock College - EOAB - 2002353
[BIL109-A.HAA]House of Assembly No 106[As laid on the table and read a first time on 5 December 2002] South Australia [Prepared by the Parliamentary Counsel] ELECTRICITY (PRICING ORDER) AMENDMENT BILL 2002 A Bill For
East Los Angeles College - STG - 0607
Multimedia DesignWeek 7 Web Design: Planning and ProductionWeb Design Process Site map / structure design Page layout design Colour Schemes Enhancing Page DesignsMultimedia DesignWeek 72Multimedia DesignWeek 63Multimedia Design
East Los Angeles College - STG - 0607
Multimedia DesignWeek 6 Connectivity and BandwidthReport Submission Proof-read! Two printed copies to student support office by tue 7th Nov 4pm Digital copy uploaded to blackboard turnitinUK by the same time Those of you still looking for res