Hmm, HTML formatting didn't quite work there.

Here's a little bit more about my project. Below is a sample pattern file, coded up in XML. I hope the formatting stays.
Code:
<?xml version="1.0" encoding="UTF-8"?>

<!--begin to describe the neural network-->
<!--this neural network has 2 layers, only the Input and Output layer-->
<!-- There are 2 input units, and 1 output unit. There are no hidden units -->
<NeuralNet layers="2" inputs="2" outputs="1" hidden="0">
    <Pattern id="1" width="2" height="1">
        <Input>
               0,0
        </Input>
        <Output>
                0
        </Output>
    </Pattern>
    <Pattern id="2" width="2" height="1">
        <Input>
               1,0
        </Input>
        <Output>
                0
        </Output>
    </Pattern>
    <Pattern id="3" width="2" height="1">
        <Input>
               0,1
        </Input>
        <Output>
                0
        </Output>
    </Pattern>
    <Pattern id="4" width="2" height="1">
        <Input>
               1,1
        </Input>
        <Output>
                1
        </Output>
    </Pattern>
</NeuralNet>