eustache-crto commited on
Commit
ad5b3b3
1 Parent(s): 8281178

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +60 -3
README.md CHANGED
@@ -1,3 +1,60 @@
1
- ---
2
- license: cc-by-nc-sa-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-sa-4.0
3
+ ---
4
+
5
+ # Introduction
6
+
7
+ This dataset is released along with the paper:
8
+
9
+ [A Large Scale Benchmark for Uplift Modeling](https://openreview.net/pdf?id=Q83-QeTB9lS)
10
+ Eustache Diemert, Artem Betlei, Christophe Renaudin; (Criteo AI Lab), Massih-Reza Amini (LIG, Grenoble INP)
11
+
12
+ This work was published in: AdKDD 2018 Workshop, in conjunction with KDD 2018.
13
+
14
+ When using this dataset, please cite the paper with following bibtex:
15
+
16
+ @inproceedings{Diemert2018,
17
+ author = {{Diemert Eustache, Betlei Artem} and Renaudin, Christophe and Massih-Reza, Amini},
18
+ title={A Large Scale Benchmark for Uplift Modeling},
19
+ publisher = {ACM},
20
+ booktitle = {Proceedings of the AdKDD and TargetAd Workshop, KDD, London,United Kingdom, August, 20, 2018},
21
+ year = {2018}
22
+ }
23
+
24
+
25
+ # Data description
26
+
27
+ This dataset is constructed by assembling data resulting from several incrementality tests, a particular randomized trial procedure where a random part of the population is prevented from being targeted by advertising. it consists of 25M rows, each one representing a user with 11 features, a treatment indicator and 2 labels (visits and conversions).
28
+
29
+ ## Fields
30
+
31
+ Here is a detailed description of the fields (they are comma-separated in the file):
32
+
33
+ - f0, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11: feature values (dense, float)
34
+ - treatment: treatment group (1 = treated, 0 = control)
35
+ - conversion: whether a conversion occured for this user (binary, label)
36
+ - visit: whether a visit occured for this user (binary, label)
37
+ - exposure: treatment effect, whether the user has been effectively exposed (binary)
38
+
39
+
40
+ ## Privacy
41
+
42
+ For privacy reasons the data has been sub-sampled non-uniformly so that the original incrementality level cannot be deduced from the dataset while preserving a realistic, challenging benchmark. Feature names have been anonymized and their values randomly projected so as to keep predictive power while making it practically impossible to recover the original features or user context.
43
+
44
+ ## Key figures
45
+
46
+ Format: CSV
47
+ Size: 297M (compressed)
48
+ Rows: 13,979,592
49
+ Average Visit Rate: .046992
50
+ Average Conversion Rate: .00292
51
+ Treatment Ratio: .85
52
+
53
+ # Tasks and Code
54
+
55
+ The dataset can be used primarily to benchmark methods in Uplift Modeling, Individual Treatment Effect prediction / Heterogeneous Treatment Effect.
56
+
57
+ Reference paper: [ITE and UM](https://openreview.net/pdf?id=Q83-QeTB9lS)
58
+
59
+ Reference experimental code and evaluation: [Github](https://github.com/criteo-research/large-scale-ITE-UM-benchmark)
60
+