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

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


        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
Copyright © 2018 www.massapi.com. 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.