Enum WeightInit

    • Enum Constant Detail

      • DISTRIBUTION

        public static final WeightInit DISTRIBUTION
      • SIGMOID_UNIFORM

        public static final WeightInit SIGMOID_UNIFORM
      • LECUN_NORMAL

        public static final WeightInit LECUN_NORMAL
      • XAVIER_UNIFORM

        public static final WeightInit XAVIER_UNIFORM
      • XAVIER_FAN_IN

        public static final WeightInit XAVIER_FAN_IN
      • XAVIER_LEGACY

        public static final WeightInit XAVIER_LEGACY
      • RELU_UNIFORM

        public static final WeightInit RELU_UNIFORM
      • IDENTITY

        public static final WeightInit IDENTITY
      • LECUN_UNIFORM

        public static final WeightInit LECUN_UNIFORM
      • VAR_SCALING_NORMAL_FAN_IN

        public static final WeightInit VAR_SCALING_NORMAL_FAN_IN
      • VAR_SCALING_NORMAL_FAN_OUT

        public static final WeightInit VAR_SCALING_NORMAL_FAN_OUT
      • VAR_SCALING_NORMAL_FAN_AVG

        public static final WeightInit VAR_SCALING_NORMAL_FAN_AVG
      • VAR_SCALING_UNIFORM_FAN_IN

        public static final WeightInit VAR_SCALING_UNIFORM_FAN_IN
      • VAR_SCALING_UNIFORM_FAN_OUT

        public static final WeightInit VAR_SCALING_UNIFORM_FAN_OUT
      • VAR_SCALING_UNIFORM_FAN_AVG

        public static final WeightInit VAR_SCALING_UNIFORM_FAN_AVG
      • SUPPLIED

        public static final WeightInit SUPPLIED
    • Method Detail

      • values

        public static WeightInit[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (WeightInit c : WeightInit.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static WeightInit valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
        NullPointerException - if the argument is null