BlockedTransformers

enum BlockedTransformers : Enum<BlockedTransformers> , ConvertibleToJava<BlockedTransformers>

Enum for all classification models supported by AutoML.

Entries

Link copied to clipboard

Target encoding for text data.

Link copied to clipboard

Ohe hot encoding creates a binary feature transformation.

Link copied to clipboard

Target encoding for categorical data.

Link copied to clipboard

Tf-Idf stands for, term-frequency times inverse document-frequency. This is a common term weighting scheme for identifying information from documents.

Link copied to clipboard

Weight of Evidence encoding is a technique used to encode categorical variables. It uses the natural log of the P(1)/P(0) to create weights.

Link copied to clipboard

Label encoder converts labels/categorical variables in a numerical form.

Link copied to clipboard

Word embedding helps represents words or phrases as a vector, or a series of numbers.

Link copied to clipboard

Naive Bayes is a classified that is used for classification of discrete features that are categorically distributed.

Link copied to clipboard

Count Vectorizer converts a collection of text documents to a matrix of token counts.

Link copied to clipboard

Hashing One Hot Encoder can turn categorical variables into a limited number of new features. This is often used for high-cardinality categorical features.

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Returns a representation of an immutable list of all enum entries, in the order they're declared.

Link copied to clipboard
val javaValue: BlockedTransformers
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
open override fun toJava(): BlockedTransformers
Link copied to clipboard

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.)

Link copied to clipboard

Returns an array containing the constants of this enum type, in the order they're declared.