Package org.gd.spark.opendl.downpourSGD.Backpropagation

Examples of org.gd.spark.opendl.downpourSGD.Backpropagation.BP$BPOptimizer


      }
     
      int[] hiddens = new int[1];
            hiddens[0] = 160;
           
      BP bp = new BP(x_feature, y_feature, hiddens);
            SGDTrainConfig config = new SGDTrainConfig();
            config.setUseCG(true);
            config.setCgEpochStep(50);
            config.setCgTolerance(0);
            config.setCgMaxIterations(30);
View Full Code Here

TOP

Related Classes of org.gd.spark.opendl.downpourSGD.Backpropagation.BP$BPOptimizer

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.