Question: Given the structure of input and target data described below, and using the XOR-data file as your example, decide on structure for inputs, and another

Given the structure of input and target data described below, and using the XOR-data file as your example, decide on structure for inputs, and another for the target output(s). The structure chosen (#1) above should work, with minor modifications, for any problem, not just the XOR problem. Write C code to read in all entries, and their associated target output. Write another, separate "function" to echo out the content of the data structures you've coded. Line #1 - # of input/target patterns that follow (also equal to the number of lines that follow). Line #2 - list of input values, separated by spaces, and list of target values, separated by spaces for pattern #1 Line #3 - list of input values, separated by spaces, and list of target values, separated by spaces for pattern #2 XOR data file contents: XOR-weights: PART TWO Utilize the data file from PART ONE, and the function written to input data. (Disable the function that "echoes" out the data from the file). Write a simulation of the "process" portion of the network (i.e. write a program in C). USE: Unipolar Neurons Sigmoid Activation Function Weights Provided Above. Create a "reporting" function that will compare your "processed" output to the target output and keeps track of "HITS" and "MISSES." Report the accuracy of your network in percentage of HITS. Line #1 - all weights, separated by spaces, for neuron #1 Line #2 - all weights, separated by spaces, for neuron #2 Line #3 - all weights, separated by spaces, for neuron #3 Write a function that embeds in the code structure utilized to date that implements the BP Learning Algorithm. Make sure that the initial weights are small, random values. Ensure that after the learning phase has completed, ensure that your code runs through a "Forward Processing" phase (Project-Part TWO) with the "learned weights, and reports the accuracy of your network. Once the XOR problem is working, test code with a "real world" data set. Classification accuracy of your network is the most important task
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
