alimamaTech commited on
Commit
4df31fe
·
verified ·
1 Parent(s): b2cfd9e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +13 -1
README.md CHANGED
@@ -5,4 +5,16 @@ task_categories:
5
  size_categories:
6
  - 100M<n<1B
7
  ---
8
- We introduce TRACE, the first benchmark dataset for post-click GMV prediction with delayed feedback.
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  size_categories:
6
  - 100M<n<1B
7
  ---
8
+ We introduce TRACE, the first benchmark dataset for post-click GMV prediction with delayed feedback.
9
+
10
+ 📁 Data structure includes:
11
+ 1. **Features**:
12
+ * **User/Item/Contextual Attributes**: 22 such attributes are provided (e.g., `feature_0` to `feature_21`).
13
+ * **Click Timestamp**: `click_time`.
14
+
15
+ 2. **Labels and Sequence Information**:
16
+ * **Gross Merchandise Volume (GMV) Sequence**: The sequence of transaction amounts for all purchases associated with a click. This is represented by `dirpay_amt` for the current purchase and `prev_dirpay_amt` for previous purchases.
17
+ * **Purchase Count Sequence**: The sequence indicating the order of each purchase within the attribution window for a given click. `count` represents the current purchase's order, and `total_counts` indicates the final number of purchases.
18
+ * **Purchase Timestamp Sequence**: The sequence of timestamps for each purchase. `pay_time` typically represents the timestamp of the current purchase, and `prev_pay_time` contains timestamps of previous purchases.
19
+ * **Repurchase Indicator (`multi_tag`)**: A binary label (0 or 1) indicating whether the GMV generated by a click is from a single purchase (0) or a repurchase (1). This is derived from the number of purchases.
20
+ * **Final Ground-Truth GMV Label**: The total GMV accumulated by the end of the attribution window. This is calculated as the sum of `dirpay_amt`.