TransformerScope Enum

Definition

This enum allows for 'tagging' the estimators (and subsequently transformers) in the chain to be used 'only for training', 'for training and evaluation' etc. Most notable example is, transformations over the label column should not be used for scoring, so the scope should be Training or TrainTest.

This enumeration supports a bitwise combination of its member values.

[System.Flags]
public enum TransformerScope
[<System.Flags>]
type TransformerScope = 
Public Enum TransformerScope
Inheritance
TransformerScope
Attributes

Fields

Everything 7
None 0
Scoring 4
Testing 2
Training 1
TrainTest 3

Applies to