Package com.jml.core

Enum Class ModelTypes

java.lang.Object
java.lang.Enum<ModelTypes>
com.jml.core.ModelTypes
All Implemented Interfaces:
Serializable, Comparable<ModelTypes>, Constable

public enum ModelTypes extends Enum<ModelTypes>
  • Enum Constant Details

    • POLYNOMIAL_REGRESSION

      public static final ModelTypes POLYNOMIAL_REGRESSION
    • LINEAR_REGRESSION

      public static final ModelTypes LINEAR_REGRESSION
    • LINEAR_REGRESSION_SGD

      public static final ModelTypes LINEAR_REGRESSION_SGD
    • MULTIPLE_LINEAR_REGRESSION

      public static final ModelTypes MULTIPLE_LINEAR_REGRESSION
    • PERCEPTRON

      public static final ModelTypes PERCEPTRON
    • NEURAL_NETWORK

      public static final ModelTypes NEURAL_NETWORK
    • MULTIPLE_LINEAR_REGRESSION_SGD

      public static final ModelTypes MULTIPLE_LINEAR_REGRESSION_SGD
    • K_NEAREST_NEIGHBORS

      public static final ModelTypes K_NEAREST_NEIGHBORS
    • LOGISTIC_REGRESSION

      public static final ModelTypes LOGISTIC_REGRESSION
    • POLYNOMIAL_REGRESSION_SGD

      public static final ModelTypes POLYNOMIAL_REGRESSION_SGD
  • Method Details

    • values

      public static ModelTypes[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static ModelTypes valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null