Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

1. Consider the following simple neural network with only one output node. Ignore the bias node for this example. The values on the edges indicate

image text in transcribed

1. Consider the following simple neural network with only one output node. Ignore the bias node for this example. The values on the edges indicate the weights associated with the "receiving no de Input Hidden Output 0.1 X1 0.35 Output 0.6 X2 = 0.90 Assume that the neurons have a Sigmoid activation function. You will need the following small snippet of Python code to compute sigmoid activation s for a value z. import numpy as np s = 1.0 / (1.0 + np.exp(-1.0 * z)) Or you can use a scientific calculator, MATLAB, etc. Refer to the class notes/slides and do the following Perform a forward pass on the network. . Perform a backward pass on the network. Let true input be y 0.5 . Update the weights at the output and hidden nodes using learning rate Choose the option which is correct below: O a) The error 6 at hidden node 1 will be +2.65037x10-3 O b) The error 8 at hidden node 2 will be -8.15581x10-3 O c) The error 8 at the output node is 0.0406 O d) The error 8 at the output node is-0.19 1. Consider the following simple neural network with only one output node. Ignore the bias node for this example. The values on the edges indicate the weights associated with the "receiving no de Input Hidden Output 0.1 X1 0.35 Output 0.6 X2 = 0.90 Assume that the neurons have a Sigmoid activation function. You will need the following small snippet of Python code to compute sigmoid activation s for a value z. import numpy as np s = 1.0 / (1.0 + np.exp(-1.0 * z)) Or you can use a scientific calculator, MATLAB, etc. Refer to the class notes/slides and do the following Perform a forward pass on the network. . Perform a backward pass on the network. Let true input be y 0.5 . Update the weights at the output and hidden nodes using learning rate Choose the option which is correct below: O a) The error 6 at hidden node 1 will be +2.65037x10-3 O b) The error 8 at hidden node 2 will be -8.15581x10-3 O c) The error 8 at the output node is 0.0406 O d) The error 8 at the output node is-0.19

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Intelligent Information And Database Systems Asian Conference Aciids 2012 Kaohsiung Taiwan March 19 21 2012 Proceedings Part 3 Lnai 7198

Authors: Jeng-Shyang Pan ,Shyi-Ming Chen ,Ngoc-Thanh Nguyen

2012th Edition

3642284922, 978-3642284922

More Books

Students also viewed these Databases questions