Generator
A python class for generating enhanced features using Feature Enhancement.
Last updated
A python class for generating enhanced features using Feature Enhancement.
Last updated
The Generator object learns to generate enhanced features that approximate unobserved confounder variables. This class is designed to intake and generate various data types, including continuous and discrete variables.
Parameters:
in_size
: int
Input dimension. Number of variables to be transformed. Value must be >= 1.
out_size
: int
Output dimension. Number of variables to predict. Value must be >= 1.
n_features
: int, default=2
Number of enhanced or generated features. Value must be >= 1.
datatype
: str, default="continuous"
The generated data type. This can be "continuous" or "categorical".
explainable
: bool, default=False
If set to True, output will be pandas.DataFrame and include column names of origin variable.
Methods:
Fit the Generator object to inputs and target variables using Ensemble's proprietary Feature Enhancement algorithm to learn enhanced statistical properties.
Apply fitted Generator object to inputs to get enhanced features.