Enum Class ModelTags

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

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

    • MODEL_TYPE

      public static final ModelTags MODEL_TYPE
    • HYPER_PARAMETERS

      public static final ModelTags HYPER_PARAMETERS
    • LAYER

      public static final ModelTags LAYER
    • TYPE

      public static final ModelTags TYPE
    • ACTIVATION

      public static final ModelTags ACTIVATION
    • DIMENSIONS

      public static final ModelTags DIMENSIONS
    • WEIGHTS

      public static final ModelTags WEIGHTS
    • BIAS

      public static final ModelTags BIAS
    • OPTIMIZER

      public static final ModelTags OPTIMIZER
    • PROBABILITY

      public static final ModelTags PROBABILITY
  • Method Details

    • values

      public static ModelTags[] 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 ModelTags 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