			Format of Training Files 
			     (Extension *.net)
								  
All instance files consist of a header and a body. The former contains a comment 
followed by the special symbol '#', which signifies end-of-comment.
Next two parameters are listed, which specify the number of inputs and outputs
for every instance. Each quantity is preceded by a string. 
 
Note, that the content of the string is irrelevant. The final part of the header
states the number of examples contained in the file.
The body of the training file consists of a collection of patterns. 
First, 'Ninputs' input values followed by 'Noutputs' output values. 

The following serves as an example.

		EXAMPLE:

			Even parity-2 Domain
			#
			Ninputs 2 Noutputs 1
			NTrainingPatterns 4
			0.0 0.0  0.0
			0.0 1.0  1.0
			1.0 0.0  1.0
			1.0 1.0  0.0
