
  Processing Data with a Trained Network
  
  1. Files Read
   a. Input data filename
   b. Weight file for a trained network
   c. Input if the data has output(s)?
	   
  2. Processing;
   a. Processes inputs into output layer activations and display on the screen.
   b. Total MSE and MSE per output are calculated. 
   c. The result could be saved
  
  3. Example

  twod.tra            ! input data filename
  weights.wts         ! Weights file name  
  Yes No              ! 'Yes' if file includes desired outputs, 'No' else
  

      The program will process data file twod.tra using the network
      with weight file weights.wts.

      You can run this program on your own data.



