Trees | Index | Help |
---|
Package Bio :: Package NeuralNetwork :: Module Training :: Class ExampleManager |
|
Manage a grouping of Training Examples.
This is meant to make it easy to split a bunch of training examples into three types of data:
o Training Data -- These are the data used to do the actual training of the network.
o Validation Data -- These data are used to validate the network while training. They provide an independent method to evaluate how the network is doing, and make sure the network gets trained independent of noise in the training data set.
o Testing Data -- The data which are used to verify how well a network works. They should not be used at all in the training process, so they provide a completely independent method of testing how well a network performs.Method Summary | |
---|---|
Initialize the manager with the training examples. | |
Add a set of training examples to the manager. |
Method Details |
---|
__init__(self,
training_percent=0.40000000000000002,
validation_percent=0.40000000000000002)
|
add_examples(self, training_examples)Add a set of training examples to the manager. Arguments: o training_examples - A list of TrainingExamples to manage. |
Trees | Index | Help |
---|
Generated by Epydoc 2.1 on Thu Aug 10 20:05:40 2006 | http://epydoc.sf.net |