Datasets:

Tasks:
Other
Modalities:
Tabular
Text
Formats:
parquet
ArXiv:
License:

Add task category and links to paper, project page, and code

#2
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +11 -48
README.md CHANGED
@@ -1,4 +1,7 @@
1
  ---
 
 
 
2
  configs:
3
  - config_name: candidate
4
  data_files:
@@ -40,19 +43,17 @@ configs:
40
  data_files:
41
  - split: train
42
  path: mm_emb/emb_86_3584_parquet/**/*.parquet
43
- license: cc-by-4.0
44
  ---
45
 
46
  # TencentGR-1M Dataset
47
 
48
- TAAC2025 Preliminary Round Dataset(2025年腾讯广告算法大赛初赛数据集) TencentGR-1M Dataset is a large-scale, all-modality dataset designed specifically for generative recommendation (GR) in industrial advertising. Constructed from real, de-identified Tencent Ads logs, it aims to address the lack of realistic, public multi-modal datasets in the GR field.
49
-
50
- - Data Features: Contains rich collaborative IDs and multi-modal representations (text and vision) extracted using state-of-the-art embedding models.
51
- - Dataset Size: Provides 1 million user sequences, with each user sequence containing up to 100 interacted items.
52
- - Labels: Each interaction within the sequence is explicitly labeled with **exposure(0)** and **click(1)** signals.
53
-
54
 
 
55
 
 
 
 
56
 
57
  ## Dataset Structure
58
 
@@ -85,13 +86,12 @@ All data files are stored in **Snappy-compressed Parquet** format.
85
 
86
  For clarity and brevity, we provide detailed schema descriptions for each table below.
87
 
88
- Need to notice that we use two types of IDs in the dataset: the original IDs and the remapped IDs, for simplicity, we will denote them as OID and RID. OIDs are used in `mm_emb`, and RIDs are used in all the training data and can be used for building models. The mapping between OIDs and RIDs can be found in the `indexer.pkl` file.
89
 
90
  #### `item_feat`
91
 
92
  The `item_feat` table contains the features of each item appeared in the `seq` set.
93
 
94
- <!-- 15 x 3 table: -->
95
  | **Field** | **Type** | **Description** | \# Non-None Values |
96
  |:---:|:---:|:---:|:---:|
97
  | `item_id` | int64 | RID for each item. |4783154 |
@@ -139,11 +139,6 @@ The `seq` table contains the behavior sequence for each user.
139
 
140
  The `candidate` table contains the candidate items for the competition.
141
 
142
- Note:
143
-
144
- - This `candidate` is for the competition, but we do not provide the ground truth labels. People may refer to this format to build their own candidate set.
145
- - The `candidate` contains some items that are not in the `seq`.
146
-
147
  | **Field** | **Type** | **Description** | \# Non-None Values |
148
  |:---:|:---:|:---:|:---:|
149
  | `item_id` | int64 | OID for each item. | 660000 |
@@ -164,7 +159,7 @@ Note:
164
 
165
  #### `mm_emb`
166
 
167
- The `mm_emb` tables contain the multimodal embeddings for each item. There are 6 different embedding dimensions(`[32, 1024, 3584, 4096, 3584, 3584]`) for 6 different embeddings(`[81, 82, 83, 84, 85, 86]`) placed in 6 files.
168
 
169
  Take the `81` embedding as an example:
170
 
@@ -175,39 +170,7 @@ Take the `81` embedding as an example:
175
 
176
  #### `indexer.pkl`
177
 
178
- This is a remapping file that maps the original IDs/Values to the remapped IDs/Values. The format is a dictionary with the following structure:
179
-
180
- ```json
181
- {
182
- "u":
183
- {
184
- OID: RID,
185
- ...
186
- },
187
- "i":
188
- {
189
- OID: RID,
190
- ...
191
- },
192
- "f":
193
- {
194
- 101:
195
- {
196
- 10100000000: 1, // original value: remapped value
197
- 10100000001: 2,
198
- ...
199
- },
200
- 102:
201
- {
202
- 1020000000: 1,
203
- 1020000001: 2,
204
- ...
205
- },
206
- ...
207
- }
208
- }
209
- ```
210
-
211
 
212
  ## Usage
213
 
 
1
  ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - other
5
  configs:
6
  - config_name: candidate
7
  data_files:
 
43
  data_files:
44
  - split: train
45
  path: mm_emb/emb_86_3584_parquet/**/*.parquet
 
46
  ---
47
 
48
  # TencentGR-1M Dataset
49
 
50
+ [**Paper**](https://huggingface.co/papers/2604.04976) | [**Project Page**](https://algo.qq.com/2025) | [**Code**](https://github.com/TencentAdvertisingAlgorithmCompetition/baseline_2025)
 
 
 
 
 
51
 
52
+ TAAC2025 Preliminary Round Dataset (2025年腾讯广告算法大赛初赛数据集) TencentGR-1M Dataset is a large-scale, all-modality dataset designed specifically for generative recommendation (GR) in industrial advertising. Constructed from real, de-identified Tencent Ads logs, it aims to address the lack of realistic, public multi-modal datasets in the GR field.
53
 
54
+ - **Data Features:** Contains rich collaborative IDs and multi-modal representations (text and vision) extracted using state-of-the-art embedding models.
55
+ - **Dataset Size:** Provides 1 million user sequences, with each user sequence containing up to 100 interacted items.
56
+ - **Labels:** Each interaction within the sequence is explicitly labeled with **exposure(0)** and **click(1)** signals.
57
 
58
  ## Dataset Structure
59
 
 
86
 
87
  For clarity and brevity, we provide detailed schema descriptions for each table below.
88
 
89
+ Note that we use two types of IDs in the dataset: the original IDs (OID) and the remapped IDs (RID). OIDs are used in `mm_emb`, and RIDs are used in all the training data and can be used for building models. The mapping between OIDs and RIDs can be found in the `indexer.pkl` file.
90
 
91
  #### `item_feat`
92
 
93
  The `item_feat` table contains the features of each item appeared in the `seq` set.
94
 
 
95
  | **Field** | **Type** | **Description** | \# Non-None Values |
96
  |:---:|:---:|:---:|:---:|
97
  | `item_id` | int64 | RID for each item. |4783154 |
 
139
 
140
  The `candidate` table contains the candidate items for the competition.
141
 
 
 
 
 
 
142
  | **Field** | **Type** | **Description** | \# Non-None Values |
143
  |:---:|:---:|:---:|:---:|
144
  | `item_id` | int64 | OID for each item. | 660000 |
 
159
 
160
  #### `mm_emb`
161
 
162
+ The `mm_emb` tables contain the multimodal embeddings for each item. There are 6 different embedding dimensions(`[32, 1024, 3584, 4096, 3584, 3584]`) for 6 different embeddings(`[81, 82, 83, 84, 85, 86]`).
163
 
164
  Take the `81` embedding as an example:
165
 
 
170
 
171
  #### `indexer.pkl`
172
 
173
+ This is a remapping file that maps the original IDs/Values to the remapped IDs/Values.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
174
 
175
  ## Usage
176