Encog.Neural.Networks.Training.Concurrent.Jobs.TrainingJob.TrainingJob C# (CSharp) Method

TrainingJob() public method

Construct a training job.
public TrainingJob ( BasicNetwork network, INeuralDataSet training, bool loadToMemory ) : System
network BasicNetwork The network to train.
training INeuralDataSet The training data to use.
loadToMemory bool True, if binary data should be loaded to memory.
return System
        public TrainingJob(BasicNetwork network,
                 INeuralDataSet training, bool loadToMemory)
            : base()
        {

            this.Network = network;
            this.Training = training;
            this.LoadToMemory = loadToMemory;
            this.IterationsPer = 1;
            this.LocalRatio = 1.0;
            this.GlobalRatio = 1;
            this.SegmentationRatio = 1.0;

        }