TransformerScope Enum
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Name | Value | Description |
---|---|---|
None | 0 | |
Training | 1 | |
Testing | 2 | |
TrainTest | 3 | |
Scoring | 4 | |
Everything | 7 |
Product | Versions |
---|---|
ML.NET | 1.0.0, 1.1.0, 1.2.0, 1.3.1, 1.4.0, 1.5.0, 1.6.0, 1.7.0, 2.0.0, 3.0.0 |