Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Project 1 Assignment This assignment involves using backpropagation ( BP ) learning procedure to train a multi - layer feedforward network to compute the 4
Project Assignment This assignment involves using backpropagation BP learning procedure to train a multilayer feedforward network to compute the bit parity function. The bipolar representation is recommended. There are total of sixteen training samples x: classx where vector x is a unique bit input pattern and classx is its corresponding target function value. It is well known that classx if x contains odd number of s and classx otherwise. You are asked to implement two versions of BP learning, one using the standard BP procedure and the other with a momentum term, and compare their respective learning performance. Besides the source code of your program, you should submit a written report of the following: The architecture of your network number of hidden layers and their sizes, the sigmoid function you choose, etc. The parameters you selected for the network, such as the learning rate, the initial weight matrix. Criteria used for termination eg acceptable error Whether learning is conducted in sequential or batch mode. For each of the two versions, report The number of iterations or the number of epochs if you choose batch mode the learning takes to its termination. The learned weights including weights for the dummybias nodes The output value of the output node when each of the sixteen input patterns is applied to the learned network. Any other issues you wish to report and discuss. To highlight the linear inseparability nature of this problem, you are also asked to apply Adaline learning procedure to the same parity function. After the training is terminated, report the decision boundary ie the linear function found by the learning process, and which of the sixteen inputs are correctly classified and which are not.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started