Datasets:

Modalities:
Tabular
Formats:
csv
ArXiv:
Libraries:
Datasets
pandas
License:
eustache-crto commited on
Commit
21d76f0
1 Parent(s): b1deb6a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +82 -0
README.md CHANGED
@@ -1,3 +1,85 @@
1
  ---
2
  license: cc-by-nc-sa-4.0
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-nc-sa-4.0
3
+ tags:
4
+ - criteo
5
+ - advertising
6
+ pretty_name: criteo-attribution-dataset
7
+ size_categories:
8
+ - 10M<n<100M
9
  ---
10
+ # Criteo Attribution Modeling for Bidding Dataset
11
+
12
+ This dataset is released along with the paper:
13
+
14
+ "Attribution Modeling Increases Efficiency of Bidding in Display Advertising"
15
+ **Eustache Diemert&ast;, Julien Meynet&ast; (Criteo Research), Damien Lefortier (Facebook), Pierre Galland (Criteo) &ast;authors contributed equally**
16
+
17
+ This work was published in: 2017 AdKDD & TargetAd Workshop, in conjunction with The 23rd ACM SIGKDD Conference on Knowledge Discovery and Data Mining (KDD 2017) (https://adkdd17.wixsite.com/adkddtargetad2017)
18
+
19
+ When using this dataset, please cite the paper with following bibtex(final ACM bibtex coming soon):
20
+
21
+ ```json
22
+ @inproceedings{DiemertMeynet2017,
23
+ author = {{Diemert Eustache, Meynet Julien} and Galland, Pierre and Lefortier, Damien},
24
+ title={Attribution Modeling Increases Efficiency of Bidding in Display Advertising},
25
+ publisher = {ACM},
26
+ pages={To appear},
27
+ booktitle = {Proceedings of the AdKDD and TargetAd Workshop, KDD, Halifax, NS, Canada, August, 14, 2017},
28
+ year = {2017}
29
+ }
30
+ ```
31
+
32
+ We would love to hear from you if use this data or plan to use it. Refer to the Contact section below.
33
+
34
+
35
+ ## Content of this dataset
36
+ This dataset includes following files:
37
+
38
+ * this **README.md**
39
+ * **criteo\_attribution\_dataset.tsv.gz**: the dataset itself (623M compressed)
40
+ * **Experiments.ipynb**: ipython notebook with code and utilities to reproduce the results in the paper. Can also be used as a starting point for further research on this data. It requires python 3.* and standard scientific libraries such as pandas, numpy and sklearn.
41
+
42
+
43
+ ## Data description
44
+ This dataset represent a sample of 30 days of Criteo live traffic data. Each line corresponds to one impression (a banner) that was displayed to a user.
45
+ For each banner we have detailed information about the context, if it was clicked, if it led to a conversion and if it led to a conversion that was attributed to Criteo or not. Data has been sub-sampled and anonymized so as not to disclose proprietary elements.
46
+
47
+ Here is a detailed description of the fields (they are tab-separated in the file):
48
+
49
+ * **timestamp**: timestamp of the impression (starting from 0 for the first impression). The dataset is sorted according to timestamp.
50
+ * **uid** a unique user identifier
51
+ * **campaign** a unique identifier for the campaign
52
+ * **conversion** 1 if there was a conversion in the 30 days after the impression (independently of whether this impression was last click or not)
53
+ * **conversion_timestamp** the timestamp of the conversion or -1 if no conversion was observed
54
+ * **conversion_id** a unique identifier for each conversion (so that timelines can be reconstructed if needed). -1 if there was no conversion
55
+ * **attribution** 1 if the conversion was attributed to Criteo, 0 otherwise
56
+ * **click** 1 if the impression was clicked, 0 otherwise
57
+ * **click_pos** the position of the click before a conversion (0 for first-click)
58
+ * **click_nb** number of clicks. More than 1 if there was several clicks before a conversion
59
+ * **cost** the price paid by Criteo for this display (**disclaimer:** not the real price, only a transformed version of it)
60
+ * **cpo** the cost-per-order in case of attributed conversion (**disclaimer:** not the real price, only a transformed version of it)
61
+ * **time\_since\_last\_click** the time since the last click (in s) for the given impression
62
+ * **cat[1-9]** contextual features associated to the display. Can be used to learn the click/conversion models. We do not disclose the meaning of these features but it is not relevant for this study. Each column is a categorical variable. In the experiments, they are mapped to a fixed dimensionality space using the Hashing Trick (see paper for reference).
63
+
64
+ ### Key figures
65
+ * 2,4Gb uncompressed
66
+ * 16.5M impressions
67
+ * 45K conversions
68
+ * 700 campaigns
69
+
70
+
71
+
72
+ ## Tasks
73
+ This dataset can be used in a large scope of applications related to Real-Time-Bidding, including but not limited to:
74
+
75
+ * Attribution modeling: rule based, model based, etc...
76
+ * Conversion modeling in display advertising: the data includes cost and value used for computing Utility metrics.
77
+ * Offline metrics for real-time bidding
78
+
79
+
80
+ ## Contact
81
+ For any question, feel free to contact:
82
+
83
+ * The authors of the paper directly (emails in the paper)
84
+ * Criteo Research team: http://ailab.criteo.com/contact-us/
85
+ * Criteo Research twitter account: @CriteoResearch