Package tv.floe.metronome.deeplearning.neuralnetwork.optimize

Examples of tv.floe.metronome.deeplearning.neuralnetwork.optimize.VectorizedNonZeroStoppingConjugateGradient


//    VectorizedNonZeroStoppingConjugateGradient g = new VectorizedNonZeroStoppingConjugateGradient(opt);
//    g.optimize(numEpochs);
       
        if ( optimizationAlgorithm == OptimizationAlgorithm.CONJUGATE_GRADIENT ) {
         
       VectorizedNonZeroStoppingConjugateGradient g = new VectorizedNonZeroStoppingConjugateGradient(opt);
       g.setTolerance(1e-5);
       g.setMaxIterations(numEpochs);
             g.optimize(numEpochs);

     } else {
/*
       VectorizedDeepLearningGradientAscent g = new VectorizedDeepLearningGradientAscent(opt);
       g.setTolerance(1e-5);
View Full Code Here

TOP

Related Classes of tv.floe.metronome.deeplearning.neuralnetwork.optimize.VectorizedNonZeroStoppingConjugateGradient

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.