zhujiem commited on
Commit
c505295
1 Parent(s): 60267b3

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +59 -0
README.md ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # TaobaoAd_x1
2
+
3
+ + **Dataset description:**
4
+
5
+ Taobao is a dataset provided by Alibaba, which contains 8 days of ad click-through data (26 million records) that are randomly sampled from 1140000 users. By default, the first 7 days (i.e., 20170506-20170512) of samples are used as training samples, and the last day's samples (i.e., 20170513) are used as test samples. Meanwhile, the dataset also covers the shopping behavior of all users in the recent 22 days, including totally seven hundred million records. We follow the preprocessing steps that have been applied to [reproducing the DMR work](https://aistudio.baidu.com/aistudio/projectdetail/1805731). We note that a small part (~5%) of samples have been dropped during preprocessing due the missing of user or item profiles. In this setting, we filter infrequent categorical features with the threshold min_category_count=10. We further set the maximal length of user behavior sequence to 50.
6
+
7
+ The dataset statistics are summarized as follows:
8
+
9
+ | Dataset Split | Total | #Train | #Validation | #Test |
10
+ | :--------: | :-----: |:-----: | :----------: | :----: |
11
+ | TaobaoAd_x1 | 25,029,426 | 21,929,911 | | 3,099,515 |
12
+
13
+ + **Data format:**
14
+ + user: User ID (int);
15
+ + time_stamp: time stamp (Bigint, 1494032110 stands for 2017-05-06 08:55:10);
16
+ + adgroup_id: adgroup ID (int);
17
+ + pid: scenario;
18
+ + noclk: 1 for not click, 0 for click;
19
+ + clk: 1 for click, 0 for not click;
20
+
21
+ ad_feature:
22
+ + adgroup_id: Ad ID (int);
23
+ + cate_id: category ID;
24
+ + campaign_id: campaign ID;
25
+ + brand: brand ID;
26
+ + customer_id: Advertiser ID;
27
+ + price: the price of item
28
+
29
+ user_profile:
30
+ + userid: user ID;
31
+ + cms_segid: Micro group ID;
32
+ + cms_group_id: cms group_id;
33
+ + final_gender_code: gender 1 for male, 2 for female
34
+ + age_level: age_level
35
+ + pvalue_level: Consumption grade, 1: low, 2: mid, 3: high
36
+ + shopping_level: Shopping depth, 1: shallow user, 2: moderate user, 3: depth user
37
+ + occupation: Is the college student 1: yes, 0: no?
38
+ + new_user_class_level: City level
39
+
40
+ raw_behavior_log:
41
+ + nick: User ID(int);
42
+ + time_stamp: time stamp (Bigint, 1494032110 stands for 2017-05-06 08:55:10);
43
+ + btag: Types of behavior, include: ipv/cart/fav/buy;
44
+ + cate: category ID(int);
45
+ + brand: brand ID(int);
46
+
47
+ + **Source:** https://tianchi.aliyun.com/dataset/dataDetail?dataId=56
48
+ + **Download:** https://huggingface.co/datasets/reczoo/TaobaoAd_x1/tree/main
49
+ + **RecZoo Datasets:** https://github.com/reczoo/Datasets
50
+
51
+ + **Used by papers:**
52
+ - Ze Lyu, Yu Dong, Chengfu Huo, Weijun Ren. [Deep Match to Rank Model for Personalized Click-Through Rate Prediction](https://ojs.aaai.org/index.php/AAAI/article/view/5346). In AAAI 2020.
53
+
54
+ + **Check the md5sum for data integrity:**
55
+ ```bash
56
+ $ md5sum train.csv test.csv
57
+ eaabfc8629f23519b04593e26c7522fc train.csv
58
+ f5ae6197e52385496d46e2867c1c8da1 test.csv
59
+ ```