Package com.clearnlp.classification.algorithm.old

Examples of com.clearnlp.classification.algorithm.old.AdaGradLR


    switch (solver)
    {
    case AbstractAlgorithm.SOLVER_ADAGRAD_HINGE:
      return new AdaGradHinge(alpha, rho, eps);
    case AbstractAlgorithm.SOLVER_ADAGRAD_LR:
      return new AdaGradLR(alpha, rho, eps);
    }
   
    return null;
  }
View Full Code Here

TOP

Related Classes of com.clearnlp.classification.algorithm.old.AdaGradLR

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.