Documentation For Encog 2.x

XMLNeuralDataSet Class

A data source that reads XML files. This class is not memory based, so very large XML files can be used, without problem. The XML data is assumed to look something like below. The names of the tags can be configured using the various properties on this object. <DataSet> <pair> <input><value>0</value><value>0</value></input> <ideal><value>0</value></ideal> </pair> <pair> <input><value>1</value><value>0</value></input> <ideal><value>1</value></ideal> </pair> <pair> <input><value>0</value><value>1</value></input> <ideal><value>1</value></ideal> </pair> <pair> <input><value>1</value><value>1</value></input> <ideal><value>0</value></ideal> </pair> </DataSet>

For a list of all members of this type, see XMLNeuralDataSet Members .

System.Object
   XMLNeuralDataSet

public class XMLNeuralDataSet : INeuralDataSet, IEnumerable<T>, IEnumerable, IEncogPersistedObject, ICloneable

Thread Safety

Public static (Shared in Visual Basic) members of this type are safe for multithreaded operations. Instance members are not guaranteed to be thread-safe.

Requirements

Namespace: Encog.Neural.Data.XML

Assembly: encog-core-cs (in encog-core-cs.dll)

See Also

XMLNeuralDataSet Members | Encog.Neural.Data.XML Namespace