Package ai.libs.jaicore.ml.core
Enum EScikitLearnProblemType
- java.lang.Object
-
- java.lang.Enum<EScikitLearnProblemType>
-
- ai.libs.jaicore.ml.core.EScikitLearnProblemType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<EScikitLearnProblemType>
public enum EScikitLearnProblemType extends java.lang.Enum<EScikitLearnProblemType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLASSIFICATIONREGRESSIONTIME_SERIES_FEATURE_ENGINEERINGTIME_SERIES_REGRESSION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetName()java.lang.String[]getPythonOptionalModules()java.lang.String[]getPythonRequiredModules()java.lang.StringgetScikitLearnCommandLineFlag()static EScikitLearnProblemTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static EScikitLearnProblemType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
REGRESSION
public static final EScikitLearnProblemType REGRESSION
-
CLASSIFICATION
public static final EScikitLearnProblemType CLASSIFICATION
-
TIME_SERIES_REGRESSION
public static final EScikitLearnProblemType TIME_SERIES_REGRESSION
-
TIME_SERIES_FEATURE_ENGINEERING
public static final EScikitLearnProblemType TIME_SERIES_FEATURE_ENGINEERING
-
-
Method Detail
-
values
public static EScikitLearnProblemType[] 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 (EScikitLearnProblemType c : EScikitLearnProblemType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EScikitLearnProblemType valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getScikitLearnCommandLineFlag
public java.lang.String getScikitLearnCommandLineFlag()
-
getPythonRequiredModules
public java.lang.String[] getPythonRequiredModules()
-
getPythonOptionalModules
public java.lang.String[] getPythonOptionalModules()
-
getName
public java.lang.String getName()
-
-