Package edu.cmu.tetrad.search.test
Enum Class Kci.KernelType
- All Implemented Interfaces:
- Serializable,- Comparable<Kci.KernelType>,- Constable
- Enclosing class:
- Kci
Represents the type of kernel to be used in a computation.
 
- GAUSSIAN: Indicates the use of a Gaussian kernel, commonly used in various machine learning algorithms for its smooth and bell-shaped curve characteristics.
- POLYNOMIAL: Represents a polynomial kernel, which is useful for problems requiring the representation of the input data in a higher-dimensional space.
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionIndicates the use of a Gaussian kernel, commonly used in various machine learning algorithms for its smooth and bell-shaped curve characteristics.Represents the use of a linear kernel, typically employed when data is linearly separable or for problems that require linear decision boundaries.Represents a polynomial kernel, which is useful for situations requiring the transformation of input data into a higher-dimensional space.
- 
Method SummaryModifier and TypeMethodDescriptionstatic Kci.KernelTypeReturns the enum constant of this class with the specified name.static Kci.KernelType[]values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.EnumcompareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
- 
Enum Constant Details- 
GAUSSIANIndicates the use of a Gaussian kernel, commonly used in various machine learning algorithms for its smooth and bell-shaped curve characteristics.
- 
LINEARRepresents the use of a linear kernel, typically employed when data is linearly separable or for problems that require linear decision boundaries.
- 
POLYNOMIALRepresents a polynomial kernel, which is useful for situations requiring the transformation of input data into a higher-dimensional space. This type of kernel computes the similarity between data points as a polynomial function of their attributes, allowing for the modeling of more complex patterns or structures in the data.
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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
 
 
-