Neuroph

org.neuroph.samples.timeseries
Class GenerateSet

java.lang.Object
  extended by org.neuroph.samples.timeseries.GenerateSet

public class GenerateSet
extends java.lang.Object

Very simple basic class which wraps the data generation process for the Time-Series Prediction tutorial. Internally handles writing the data out to a system file. Also uses a buffer to simulate stepping along the time series data. See http://neuroph.sourceforge.net/TimeSeriesPredictionTutorial.html


Constructor Summary
GenerateSet(java.lang.String filename, boolean simple, int sampleEvery, int memory)
          Contructor for datase set generator which takes filename and data set settings as arguments
 
Method Summary
 void doIt()
          Does the data set generation
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

GenerateSet

public GenerateSet(java.lang.String filename,
                   boolean simple,
                   int sampleEvery,
                   int memory)
Contructor for datase set generator which takes filename and data set settings as arguments

Parameters:
filename -
simple -
sampleEvery -
memory -
Method Detail

doIt

public void doIt()
          throws java.io.IOException
Does the data set generation

Throws:
java.io.IOException

Neuroph