Add paper link, code link, and metadata

#2
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +42 -1
README.md CHANGED
@@ -1,4 +1,45 @@
1
  ---
2
  license: apache-2.0
 
 
 
 
 
 
3
  ---
4
- Conversion Rate (CVR) prediction is a cornerstone of online advertising systems. However, existing public CVR datasets—such as Criteo and Ali-CCP provide conversion labels derived from a single attribution mechanism, severely limiting research into more holistic modeling paradigms. To bridge this gap, we introduce MAC (Multi-Attribution BenChmark), the first public CVR dataset featuring labels from multiple attribution mechanisms.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
+ task_categories:
4
+ - other
5
+ tags:
6
+ - advertising
7
+ - conversion-rate-prediction
8
+ - multi-attribution-learning
9
  ---
10
+
11
+ # MAC: Multi-Attribution BenChmark
12
+
13
+ [Paper](https://huggingface.co/papers/2603.02184) | [Code](https://github.com/alimama-tech/PyMAL)
14
+
15
+ Conversion Rate (CVR) prediction is a cornerstone of online advertising systems. However, existing public CVR datasets—such as Criteo and Ali-CCP—provide conversion labels derived from a single attribution mechanism, severely limiting research into more holistic modeling paradigms. To bridge this gap, we introduce **MAC (Multi-Attribution BenChmark)**, the first public CVR dataset featuring labels from multiple attribution mechanisms.
16
+
17
+ ## Overview
18
+ MAC is the first benchmark featuring labels from multiple attribution mechanisms, specifically designed to foster research in Multi-Attribution Learning (MAL). By learning from conversion labels yielded by multiple attribution mechanisms, models can obtain a more comprehensive and robust understanding of touchpoint value.
19
+
20
+ Along with the dataset, the authors provide **PyMAL**, an open-source library covering a wide array of baseline methods (such as MMoE, PLE, and MoAE) for industrial-scale CVR prediction.
21
+
22
+ ## Dataset Structure
23
+ The files in this repository are organized as follows:
24
+ - `train/`: Training data files.
25
+ - `test/`: Test data files.
26
+ - `vocabs/`: ID mappings and vocabulary files for features.
27
+
28
+ ## Usage
29
+ To download the dataset directly via `git clone`:
30
+ ```bash
31
+ git clone https://huggingface.co/datasets/alimamaTech/MAC data
32
+ ```
33
+
34
+ ## Citation
35
+ ```bibtex
36
+ @misc{wu2026macconversionrateprediction,
37
+ title={MAC: A Conversion Rate Prediction Benchmark Featuring Labels Under Multiple Attribution Mechanisms},
38
+ author={Jinqi Wu and Sishuo Chen and Zhangming Chan and Bird Bai and Lei Zhang and Sheng Chen and Chenghuan Hou and Xiang-Rong Sheng and Han Zhu and Jian Xu and Bo Zheng and Chaoyou Fu},
39
+ year={2026},
40
+ eprint={2603.02184},
41
+ archivePrefix={arXiv},
42
+ primaryClass={cs.LG},
43
+ url={https://arxiv.org/abs/2603.02184},
44
+ }
45
+ ```