Share via


BlockedTransformers Struct

Definition

Enum for all classification models supported by AutoML.

[System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.MachineLearningServices.Support.BlockedTransformersTypeConverter))]
public struct BlockedTransformers : IEquatable<Microsoft.Azure.PowerShell.Cmdlets.MachineLearningServices.Support.BlockedTransformers>, System.Management.Automation.IArgumentCompleter
[<System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.MachineLearningServices.Support.BlockedTransformersTypeConverter))>]
type BlockedTransformers = struct
    interface IArgumentCompleter
Public Structure BlockedTransformers
Implements IArgumentCompleter, IEquatable(Of BlockedTransformers)
Inheritance
BlockedTransformers
Attributes
Implements

Fields

CatTargetEncoder

Target encoding for categorical data.

CountVectorizer

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

HashOneHotEncoder

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

LabelEncoder

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

NaiveBayes

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

OneHotEncoder

Ohe hot encoding creates a binary feature transformation.

TextTargetEncoder

Target encoding for text data.

TfIdf

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

WoETargetEncoder

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.

WordEmbedding

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

Methods

CompleteArgument(String, String, String, CommandAst, IDictionary)

Implementations of this function are called by PowerShell to complete arguments.

Equals(BlockedTransformers)

Compares values of enum type BlockedTransformers

Equals(Object)

Compares values of enum type BlockedTransformers (override for Object)

GetHashCode()

Returns hashCode for enum BlockedTransformers

ToString()

Returns string representation for BlockedTransformers

Operators

Equality(BlockedTransformers, BlockedTransformers)

Overriding == operator for enum BlockedTransformers

Implicit(BlockedTransformers to String)

Implicit operator to convert BlockedTransformers to string

Implicit(String to BlockedTransformers)

Implicit operator to convert string to BlockedTransformers

Inequality(BlockedTransformers, BlockedTransformers)

Overriding != operator for enum BlockedTransformers

Applies to