Accessing raw data
up.randomized_search_params # Parameters that are used in `up.randomized_search()`
up.grid_search_params # Parameters that are used in `up.grid_search()`
up.transform # Outcome transform function.
up.untransform # Reverse of outcome transform function.
# Data (`y` in any of these can be replaced with `tc` for treatment or `x`).
up.transformed_y_train_pred # The predicted uplift.
up.transformed_y_train # The transformed outcome.
up.y_train
up.y_test
up.y # All the `y` data.
up.df
up.df_train
up.df_test
# Once a model has been created...
up.model
up.model_final
up.Q_cgains # 'aqini' or 'qini' can be used in place of 'cgains'
up.q1_cgains
up.q2_cgainsEvaluation curve information
Last updated