You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update sensitivity tests with more meta-learners (#759)
* update sensitivity tests with more meta-learners
* fix lint errors
* reformat with black
* fix the type hint error for | in Python3.7 by using typing.Union
Softmax function. This function is used to reversely solve the constant root value in the linear part to make the softmax function output mean to be a given value.
164
+
Softmax function. This function is used to reversely solve the constant root value in the linear part to make the
List of uplift feature association patterns to the treatment effect. For example, if the feature pattern is 'quadratic', then the treatment effect will increase or decrease quadratically with the feature.
231
-
The values in the list must be one of ('linear','quadratic','cubic','relu','sin','cos'). However, the same value can appear multiple times in the list.
234
+
List of uplift feature association patterns to the treatment effect. For example, if the feature pattern is
235
+
'quadratic', then the treatment effect will increase or decrease quadratically with the feature.
236
+
The values in the list must be one of ('linear','quadratic','cubic','relu','sin','cos'). However, the same
How the feature patterns are selected from the feature_association_list to be applied in the data generation process.
234
-
If random_select_association = True, then for every uplift feature, a random feature association pattern is selected from the list.
235
-
If random_select_association = False, then the feature association pattern is selected from the list in turns to be applied to each feature one by one.
239
+
How the feature patterns are selected from the feature_association_list to be applied in the data generation
240
+
process. If random_select_association = True, then for every uplift feature, a random feature association
241
+
pattern is selected from the list. If random_select_association = False, then the feature association pattern
242
+
is selected from the list in turns to be applied to each feature one by one.
236
243
error_std : float, optional (default = 0.05)
237
-
Standard deviation to be used in the error term of the logistic regression. The error is drawn from a normal distribution with mean 0 and standard deviation specified in this argument.
244
+
Standard deviation to be used in the error term of the logistic regression. The error is drawn from a normal
245
+
distribution with mean 0 and standard deviation specified in this argument.
0 commit comments