Datasets:
Update dataset to v2.0.0: use native parquet format
Browse files- README.md +28 -27
- demo_1000.parquet +2 -2
README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
---
|
| 2 |
-
license:
|
| 3 |
task_categories:
|
| 4 |
- text-classification
|
| 5 |
tags:
|
|
@@ -9,11 +9,15 @@ size_categories:
|
|
| 9 |
- n<1K
|
| 10 |
---
|
| 11 |
|
| 12 |
-
# TAAC2026 Demo Dataset
|
| 13 |
|
| 14 |
-
> ⚠️ **
|
|
|
|
|
|
|
|
|
|
| 15 |
|
| 16 |
-
|
|
|
|
| 17 |
|
| 18 |
## Dataset Overview
|
| 19 |
|
|
@@ -22,11 +26,8 @@ A sample dataset containing **1,000** user-item interaction records for the TAAC
|
|
| 22 |
| **File** | `demo_1000.parquet` |
|
| 23 |
| **Rows** | 1,000 |
|
| 24 |
| **Columns** | 120 |
|
| 25 |
-
| **Format** | Apache Parquet
|
| 26 |
-
| **File Size** | ~38.
|
| 27 |
-
| **Unique Users** | 1,000 |
|
| 28 |
-
| **Unique Items** | 837 |
|
| 29 |
-
| **Timestamp Range** | `2026-03-05 23:36:40` — `2026-03-05 23:49:41` |
|
| 30 |
|
| 31 |
## Label Distribution
|
| 32 |
|
|
@@ -42,9 +43,9 @@ The 120 columns fall into **6 categories**:
|
|
| 42 |
| Category | Count | Arrow Type | Description |
|
| 43 |
|---|---|---|---|
|
| 44 |
| **ID & Label** | 5 | `int64` / `int32` | Core identifiers, label, and timestamp |
|
| 45 |
-
| **User Int Features** | 46 | `int64` / `
|
| 46 |
-
| **User Dense Features** | 10 | `list<float>` | Float-array user features
|
| 47 |
-
| **Item Int Features** | 14 | `
|
| 48 |
| **Domain Sequence Features** | 45 | `list<int64>` | Behavioral sequence features from 4 domains |
|
| 49 |
|
| 50 |
---
|
|
@@ -63,7 +64,7 @@ The 120 columns fall into **6 categories**:
|
|
| 63 |
|
| 64 |
### User Int Features (46 columns)
|
| 65 |
|
| 66 |
-
#### Scalar Columns (`int64`
|
| 67 |
|
| 68 |
| Column | Nulls | Null% | Min | Max | Mean | Unique |
|
| 69 |
|---|---|---|---|---|---|---|
|
|
@@ -140,20 +141,20 @@ All columns are `list<float>` arrays (e.g. embedding vectors).
|
|
| 140 |
|
| 141 |
| Column | Arrow Type | Nulls | Null% | Min | Max | Mean | Unique |
|
| 142 |
|---|---|---|---|---|---|---|---|
|
| 143 |
-
| `item_int_feats_5` | `
|
| 144 |
-
| `item_int_feats_6` | `
|
| 145 |
-
| `item_int_feats_7` | `
|
| 146 |
-
| `item_int_feats_8` | `
|
| 147 |
-
| `item_int_feats_9` | `
|
| 148 |
-
| `item_int_feats_10` | `
|
| 149 |
| `item_int_feats_11` | `list<int64>` | 439 | 43.9% | — | — | — | — |
|
| 150 |
-
| `item_int_feats_12` | `
|
| 151 |
-
| `item_int_feats_13` | `
|
| 152 |
-
| `item_int_feats_16` | `
|
| 153 |
-
| `item_int_feats_81` | `
|
| 154 |
-
| `item_int_feats_83` | `
|
| 155 |
-
| `item_int_feats_84` | `
|
| 156 |
-
| `item_int_feats_85` | `
|
| 157 |
|
| 158 |
### Domain Sequence Features (45 columns)
|
| 159 |
|
|
@@ -251,7 +252,7 @@ print(null_pct[null_pct > 0.5]) # Columns with >50% nulls
|
|
| 251 |
|
| 252 |
## Key Notes
|
| 253 |
|
| 254 |
-
1. **
|
| 255 |
2. **No nested structs**: Unlike the older `sample_data.parquet`, all features are flat top-level columns.
|
| 256 |
3. **Sparse features**: 18 columns have >40% null values — handle missing data carefully during feature engineering.
|
| 257 |
4. **Sequence lengths vary widely**: Domain sequences range from length 1 to ~3,951, which may require truncation or padding for model input.
|
|
|
|
| 1 |
---
|
| 2 |
+
license: cc-by-nc-4.0
|
| 3 |
task_categories:
|
| 4 |
- text-classification
|
| 5 |
tags:
|
|
|
|
| 9 |
- n<1K
|
| 10 |
---
|
| 11 |
|
| 12 |
+
# TAAC2026 Demo Dataset
|
| 13 |
|
| 14 |
+
> ⚠️ **Update[2026.04.10]**: This demo dataset has been updated to newest version with the following changes:
|
| 15 |
+
> - The parquet file is now a **flat column layout**, with all features as top-level columns.
|
| 16 |
+
> - Add a sequence feature and update some user/item features.
|
| 17 |
+
> Participants should refer to the updated `demo_1000.parquet` and this README for the latest schema and data details.
|
| 18 |
|
| 19 |
+
|
| 20 |
+
A sample dataset containing **1,000** user-item interaction records for [the TAAC2026 competition](https://algo.qq.com/). This dataset uses a **flat column layout** — all features are stored as individual top-level columns instead of nested structs/arrays.
|
| 21 |
|
| 22 |
## Dataset Overview
|
| 23 |
|
|
|
|
| 26 |
| **File** | `demo_1000.parquet` |
|
| 27 |
| **Rows** | 1,000 |
|
| 28 |
| **Columns** | 120 |
|
| 29 |
+
| **Format** | Apache Parquet |
|
| 30 |
+
| **File Size** | ~38.38 MB |
|
|
|
|
|
|
|
|
|
|
| 31 |
|
| 32 |
## Label Distribution
|
| 33 |
|
|
|
|
| 43 |
| Category | Count | Arrow Type | Description |
|
| 44 |
|---|---|---|---|
|
| 45 |
| **ID & Label** | 5 | `int64` / `int32` | Core identifiers, label, and timestamp |
|
| 46 |
+
| **User Int Features** | 46 | `int64` / `list<int64>` | Integer-valued user features (scalar or array) |
|
| 47 |
+
| **User Dense Features** | 10 | `list<float>` | Float-array user features |
|
| 48 |
+
| **Item Int Features** | 14 | `int64` / `list<int64>` | Integer-valued item features (scalar or array) |
|
| 49 |
| **Domain Sequence Features** | 45 | `list<int64>` | Behavioral sequence features from 4 domains |
|
| 50 |
|
| 51 |
---
|
|
|
|
| 64 |
|
| 65 |
### User Int Features (46 columns)
|
| 66 |
|
| 67 |
+
#### Scalar Columns (`int64`)
|
| 68 |
|
| 69 |
| Column | Nulls | Null% | Min | Max | Mean | Unique |
|
| 70 |
|---|---|---|---|---|---|---|
|
|
|
|
| 141 |
|
| 142 |
| Column | Arrow Type | Nulls | Null% | Min | Max | Mean | Unique |
|
| 143 |
|---|---|---|---|---|---|---|---|
|
| 144 |
+
| `item_int_feats_5` | `int64` | 2 | 0.2% | 4 | 325 | 118.452 | 82 |
|
| 145 |
+
| `item_int_feats_6` | `int64` | 2 | 0.2% | 0 | 977 | 419.073 | 216 |
|
| 146 |
+
| `item_int_feats_7` | `int64` | 2 | 0.2% | 0 | 2,806 | 1,052.866 | 349 |
|
| 147 |
+
| `item_int_feats_8` | `int64` | 2 | 0.2% | -1 | 2,431 | 463.712 | 226 |
|
| 148 |
+
| `item_int_feats_9` | `int64` | 2 | 0.2% | 3 | 37 | 21.171 | 24 |
|
| 149 |
+
| `item_int_feats_10` | `int64` | 2 | 0.2% | 2 | 309 | 150.007 | 110 |
|
| 150 |
| `item_int_feats_11` | `list<int64>` | 439 | 43.9% | — | — | — | — |
|
| 151 |
+
| `item_int_feats_12` | `int64` | 2 | 0.2% | 0 | 2,777 | 1,039.381 | 352 |
|
| 152 |
+
| `item_int_feats_13` | `int64` | 2 | 0.2% | 1 | 8 | 4.457 | 8 |
|
| 153 |
+
| `item_int_feats_16` | `int64` | 2 | 0.2% | 2 | 35,259 | 12,356.101 | 662 |
|
| 154 |
+
| `item_int_feats_81` | `int64` | 2 | 0.2% | 0 | 2 | 0.508 | 3 |
|
| 155 |
+
| `item_int_feats_83` | `int64` | 832 | 83.2% | 1 | 31 | 17.595 | 22 |
|
| 156 |
+
| `item_int_feats_84` | `int64` | 832 | 83.2% | 3 | 226 | 131.131 | 66 |
|
| 157 |
+
| `item_int_feats_85` | `int64` | 832 | 83.2% | 4 | 1,001 | 439.816 | 103 |
|
| 158 |
|
| 159 |
### Domain Sequence Features (45 columns)
|
| 160 |
|
|
|
|
| 252 |
|
| 253 |
## Key Notes
|
| 254 |
|
| 255 |
+
1. **Nullable int64**: All `*_int_feats_*` scalar columns are stored as Arrow `int64` with native null support. When reading with pandas, nullable int columns may be converted to `float64` — use `df[col].fillna(-1).astype(int)` or read with `pd.Int64Dtype()` to preserve the integer type.
|
| 256 |
2. **No nested structs**: Unlike the older `sample_data.parquet`, all features are flat top-level columns.
|
| 257 |
3. **Sparse features**: 18 columns have >40% null values — handle missing data carefully during feature engineering.
|
| 258 |
4. **Sequence lengths vary widely**: Domain sequences range from length 1 to ~3,951, which may require truncation or padding for model input.
|
demo_1000.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0ceaa386ec322436231f2615e5ee89e791d79c727a788c0fb439b0ecb6b68848
|
| 3 |
+
size 40268995
|