Skip to content

Commit 2b9cdd2

Browse files
committed
Merge branch 'feature/fix_metrics' into dev
2 parents edd69ab + becb675 commit 2b9cdd2

File tree

4 files changed

+185
-107
lines changed

4 files changed

+185
-107
lines changed

Readme.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,9 +238,12 @@ Papers and materials
238238
9. Zhao, Yan & Fang, Xiao & Simchi-Levi, David. 2017.
239239
Uplift Modeling with Multiple Treatments and General Response Types. 10.1137/1.9781611974973.66.
240240

241-
10. Nicholas J Radcliffe. 2007
241+
10. Nicholas J Radcliffe. 2007.
242242
Using control groups to target on predicted lift: Building and assessing uplift model. Direct Marketing Analytics Journal, (3):14–21, 2007.
243243

244+
11. Devriendt, F., Guns, T., & Verbeke, W. 2020.
245+
Learning to rank for uplift modeling. ArXiv, abs/2002.05897.
246+
244247
===============
245248

246249
Tags

docs/index.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,9 +154,12 @@ Papers and materials
154154
9. Zhao, Yan & Fang, Xiao & Simchi-Levi, David. 2017.
155155
Uplift Modeling with Multiple Treatments and General Response Types. 10.1137/1.9781611974973.66.
156156

157-
10. Nicholas J Radcliffe. 2007
157+
10. Nicholas J Radcliffe. 2007.
158158
Using control groups to target on predicted lift: Building and assessing uplift model. Direct Marketing Analytics Journal, (3):14–21, 2007.
159159

160+
11. Devriendt, F., Guns, T., & Verbeke, W. 2020.
161+
Learning to rank for uplift modeling. ArXiv, abs/2002.05897.
162+
160163
===============
161164

162165
Tags

sklift/metrics/__init__.py

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
from .metrics import (
2-
uplift_curve, auuc, qini_curve, auqc, uplift_at_k, response_rate_by_percentile,
3-
uplift_by_percentile, weighted_average_uplift, treatment_balance_curve,
4-
uplift_auc_score, qini_auc_score
2+
uplift_curve, perfect_uplift_curve, uplift_auc_score,
3+
qini_curve, perfect_qini_curve, qini_auc_score,
4+
uplift_at_k, response_rate_by_percentile,
5+
weighted_average_uplift, uplift_by_percentile, treatment_balance_curve
56
)
67

78
__all__ = [
8-
uplift_curve, auuc, qini_curve, auqc, uplift_at_k, response_rate_by_percentile,
9-
uplift_by_percentile, weighted_average_uplift, treatment_balance_curve,
10-
uplift_auc_score, qini_auc_score
9+
uplift_curve, perfect_uplift_curve, uplift_auc_score,
10+
qini_curve, perfect_qini_curve, qini_auc_score,
11+
uplift_at_k, response_rate_by_percentile,
12+
weighted_average_uplift, uplift_by_percentile, treatment_balance_curve
1113
]

0 commit comments

Comments
 (0)