Add paper link, project page, and baseline code to dataset card
#2
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,4 +1,7 @@
|
|
| 1 |
---
|
|
|
|
|
|
|
|
|
|
| 2 |
configs:
|
| 3 |
- config_name: candidate
|
| 4 |
data_files:
|
|
@@ -40,20 +43,18 @@ configs:
|
|
| 40 |
data_files:
|
| 41 |
- split: train
|
| 42 |
path: mm_emb/emb_86_3584_1210_parquet/**/*.parquet
|
| 43 |
-
license: cc-by-4.0
|
| 44 |
---
|
| 45 |
|
| 46 |
# TencentGR-10M Dataset
|
| 47 |
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
The main differences between TencentGR-10M and TencentGR-1M are:
|
| 51 |
-
|
| 52 |
-
- Dataset Size: Provides **10 million** user sequences, with each user sequence containing up to 100 interacted items.
|
| 53 |
-
- Labels: Each interaction within the sequence is explicitly labeled with **exposure(0)**, **click(1)**, and **conversion(2)** signals.
|
| 54 |
|
|
|
|
| 55 |
|
|
|
|
| 56 |
|
|
|
|
|
|
|
| 57 |
|
| 58 |
## Dataset Structure
|
| 59 |
|
|
@@ -92,7 +93,6 @@ Need to notice that we use two types of IDs in the dataset: the original IDs and
|
|
| 92 |
|
| 93 |
The `item_feat` table contains the features of each item appeared in the `seq` set.
|
| 94 |
|
| 95 |
-
<!-- 15 x 3 table: -->
|
| 96 |
| **Field** | **Type** | **Description** | \# Non-None Values |
|
| 97 |
|:---:|:---:|:---:|:---:|
|
| 98 |
| `item_id` | int64 | RID for each item. |4783154 |
|
|
@@ -140,11 +140,6 @@ The `seq` table contains the behavior sequence for each user.
|
|
| 140 |
|
| 141 |
The `candidate` table contains the candidate items for the competition.
|
| 142 |
|
| 143 |
-
Note:
|
| 144 |
-
|
| 145 |
-
- 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.
|
| 146 |
-
- The `candidate` contains some items that are not in the `seq`.
|
| 147 |
-
|
| 148 |
| **Field** | **Type** | **Description** | \# Non-None Values |
|
| 149 |
|:---:|:---:|:---:|:---:|
|
| 150 |
| `item_id` | int64 | OID for each item. | 660000 |
|
|
@@ -167,8 +162,6 @@ Note:
|
|
| 167 |
|
| 168 |
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.
|
| 169 |
|
| 170 |
-
Take the `81` embedding as an example:
|
| 171 |
-
|
| 172 |
| **Field** | **Type** | **Description** | \# Non-None Values |
|
| 173 |
|:---:|:---:|:---:|:---:|
|
| 174 |
| `anonymous_cid` | string | OID for each item. | 4742961 |
|
|
@@ -176,39 +169,7 @@ Take the `81` embedding as an example:
|
|
| 176 |
|
| 177 |
#### `indexer.pkl`
|
| 178 |
|
| 179 |
-
This is a remapping file that maps the original IDs/Values to the remapped IDs/Values.
|
| 180 |
-
|
| 181 |
-
```json
|
| 182 |
-
{
|
| 183 |
-
"u":
|
| 184 |
-
{
|
| 185 |
-
OID: RID,
|
| 186 |
-
...
|
| 187 |
-
},
|
| 188 |
-
"i":
|
| 189 |
-
{
|
| 190 |
-
OID: RID,
|
| 191 |
-
...
|
| 192 |
-
},
|
| 193 |
-
"f":
|
| 194 |
-
{
|
| 195 |
-
101:
|
| 196 |
-
{
|
| 197 |
-
10100000000: 1, // original value: remapped value
|
| 198 |
-
10100000001: 2,
|
| 199 |
-
...
|
| 200 |
-
},
|
| 201 |
-
102:
|
| 202 |
-
{
|
| 203 |
-
1020000000: 1,
|
| 204 |
-
1020000001: 2,
|
| 205 |
-
...
|
| 206 |
-
},
|
| 207 |
-
...
|
| 208 |
-
}
|
| 209 |
-
}
|
| 210 |
-
```
|
| 211 |
-
|
| 212 |
|
| 213 |
## Usage
|
| 214 |
|
|
|
|
| 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_1210_parquet/**/*.parquet
|
|
|
|
| 46 |
---
|
| 47 |
|
| 48 |
# TencentGR-10M Dataset
|
| 49 |
|
| 50 |
+
[[Paper](https://huggingface.co/papers/2604.04976)] [[Project Page](https://algo.qq.com/2025)] [[Baseline Code](https://github.com/TencentAdvertisingAlgorithmCompetition/baseline_2025)]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 51 |
|
| 52 |
+
TAAC2025 Second Round Dataset (2025年腾讯广告算法大赛复赛数据集) TencentGR-10M Dataset is a large-scale, all-modality dataset designed specifically for generative recommendation (GR) in industrial advertising. Similar to [TencentGR-1M](https://huggingface.co/datasets/TAAC2025/TencentGR-1M), it is constructed from real, de-identified Tencent Ads logs, and aims to address the lack of realistic, public multi-modal datasets in the GR field.
|
| 53 |
|
| 54 |
+
The main differences between TencentGR-10M and TencentGR-1M are:
|
| 55 |
|
| 56 |
+
- **Dataset Size**: Provides **10 million** user sequences, with each user sequence containing up to 100 interacted items.
|
| 57 |
+
- **Labels**: Each interaction within the sequence is explicitly labeled with **exposure(0)**, **click(1)**, and **conversion(2)** signals.
|
| 58 |
|
| 59 |
## Dataset Structure
|
| 60 |
|
|
|
|
| 93 |
|
| 94 |
The `item_feat` table contains the features of each item appeared in the `seq` set.
|
| 95 |
|
|
|
|
| 96 |
| **Field** | **Type** | **Description** | \# Non-None Values |
|
| 97 |
|:---:|:---:|:---:|:---:|
|
| 98 |
| `item_id` | int64 | RID for each item. |4783154 |
|
|
|
|
| 140 |
|
| 141 |
The `candidate` table contains the candidate items for the competition.
|
| 142 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 143 |
| **Field** | **Type** | **Description** | \# Non-None Values |
|
| 144 |
|:---:|:---:|:---:|:---:|
|
| 145 |
| `item_id` | int64 | OID for each item. | 660000 |
|
|
|
|
| 162 |
|
| 163 |
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.
|
| 164 |
|
|
|
|
|
|
|
| 165 |
| **Field** | **Type** | **Description** | \# Non-None Values |
|
| 166 |
|:---:|:---:|:---:|:---:|
|
| 167 |
| `anonymous_cid` | string | OID for each item. | 4742961 |
|
|
|
|
| 169 |
|
| 170 |
#### `indexer.pkl`
|
| 171 |
|
| 172 |
+
This is a remapping file that maps the original IDs/Values to the remapped IDs/Values.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 173 |
|
| 174 |
## Usage
|
| 175 |
|