Encog.Neural.Networks.Training.Concurrent.Jobs.TrainingJob.TrainingJob C# (CSharp) 메소드

TrainingJob() 공개 메소드

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.
리턴 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;

        }