Given a neural network with three input units (i1, i2, i3), two hidden
units (h1 and h2) and one output unit (o1) and a threshold unit (a unit
whose activitity is always 1) and weights connecting each input unit plus
the threshold unit to the hidden units and weights connecting each hidden
unit plus the threshold unit to the output unit where all of the weights
are initially set to 0.01. Assuming a learning rate of 0.25, that each
hidden and output unit is sigmoidal, and that backpropagation is being used
(but no momentum term is in use), what will the weights be after each
of these examples is presented, where the weights at the start are the
ones after the previous example:
inputs target output
i1 i2 i3 o1
1 0 1 0
1 1 1 1
0 1 0 0
1 1 0 1