Datasets:

ArXiv:
License:
wolgraff commited on
Commit
ec412e8
·
verified ·
1 Parent(s): 60b53ee

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +15 -29
README.md CHANGED
@@ -1,28 +1,22 @@
1
-
2
  ---
3
  license: cc-by-4.0
 
4
  ---
5
- # Intro
6
- Predicting a customer's propensity to purchase a product is an important task for many companies, helping to:
7
- - assess the customer's needs, form their product profile;
8
- - improve the quality of recommendations, form package offers, form individual conditions;
9
- - correctly form a communication strategy with the customer
10
- - estimate the income that the customer can bring to the company in the future, based on the profitability of the products in which he is interested (Customer lifetime value - CLTV).
11
-
12
- To solve such problems, various data about the customer are usually used:
13
- - customer profile;
14
- - history of previous purchases and communications;
15
- - transactional activity;
16
- - geo-information about places of permanent or temporary residence;
17
- - etc.;
18
-
19
- Of particular importance are the data characterizing the patterns of client behavior (chains of events), as they help to understand the patterns in the client's actions, to assess the dynamics of changes in his behavior. The combined use of behavioral data from various sources helps to more fully describe the client in terms of predicting his needs, which, in turn, creates the task of the most effective combination of various modalities to improve the performance and quality of the developed model.
20
 
21
  # Data
22
- The dataset consists of anonymized historical data, which contains the following information: transaction activity (transactions), dialog embeddings (dialogs), geo-activity (geostream) for some of the Bank's clients over 12 months.
 
 
 
23
 
24
  Objective: To predict for each user the taking/not taking of each of the four products within a month after the reporting date, historical data for them is in targets
25
 
 
 
26
  ```
27
  client_split Desc: Splitting clients into folds
28
  |-- client_id: str Desc: Client id
@@ -33,6 +27,7 @@ detail
33
  |-- client_id: str Desc: Client id
34
  |-- event_time: timestamp Desc: Dialog's date
35
  |--embedding: array float Desc: Dialog's embeddings
 
36
  |-- geo Desc: Geo activity
37
  |-- client_id: str Desc: Client id
38
  |-- event_time: timestamp Desc: Event datetime
@@ -62,6 +57,7 @@ ptls Desc: Data is similar with detail but in pytorch-lifestream format https://
62
  |-- client_id: str Desc: Client id
63
  |-- event_time: Array[timestamp] Desc: Dialog's date
64
  |-- embedding: Array[float] Desc: Dialog's embedding
 
65
  |-- geo Desc: Geo activity
66
  |-- client_id: str Desc: Client id
67
  |-- event_time: Array[timestamp] Desc: Event datetime
@@ -95,6 +91,7 @@ targets
95
  |-- trans_count: int Desc: Number of transactions
96
  |-- diff_trans_date: int Desc: Time difference between transactions
97
  |-- client_id: str Desc: Client id
 
98
  ```
99
 
100
  # Load dataset
@@ -136,17 +133,6 @@ snapshot_download(repo_id="ai-lab/MBD-mini")
136
  ```
137
 
138
  # Citation
139
- We have a [paper](https://arxiv.org/abs/2002.08232) you can cite it:
140
  ```
141
- @inproceedings{
142
- Babaev_2022, series={SIGMOD/PODS ’22},
143
- title={CoLES: Contrastive Learning for Event Sequences with Self-Supervision},
144
- url={http://dx.doi.org/10.1145/3514221.3526129},
145
- DOI={10.1145/3514221.3526129},
146
- booktitle={Proceedings of the 2022 International Conference on Management of Data},
147
- publisher={ACM},
148
- author={Babaev, Dmitrii and Ovsov, Nikita and Kireev, Ivan and Ivanova, Maria and Gusev, Gleb and Nazarov, Ivan and Tuzhilin, Alexander},
149
- year={2022},
150
- month=jun, collection={SIGMOD/PODS ’22}
151
- }
152
  ```
 
 
1
  ---
2
  license: cc-by-4.0
3
+ viewer: false
4
  ---
5
+ # Dataset summary
6
+ This dataset is designed to assist in predicting a customer's propensity to purchase various products within a month following the reporting date. The dataset includes anonymized historical data on transaction activity, dialog embeddings, and geo-activity for some bank clients over 12 months.
7
+
8
+ The mini MBD dataset contains a reduced subset of the data, making it easier and faster to work with during the development and testing phases. It includes a smaller number of clients and a shorter time span but maintains the same structure and features as the full dataset [MBD](https://huggingface.co/datasets/ai-lab/MBD). MBD-mini has data based on 10% of unique clients listed in MBD.
 
 
 
 
 
 
 
 
 
 
 
9
 
10
  # Data
11
+ The dataset consists of anonymized historical data, which contains the following information for some of the Bank's clients over 12 months:
12
+ - transaction activity (transactions) Details about past transactions including amounts, types, and dates;
13
+ - dialog embeddings (dialogs) Embeddings from customer interactions, which capture semantic information from dialogues;
14
+ - geo-activity (geostream) Location-based data representing clients' geographic activity patterns.
15
 
16
  Objective: To predict for each user the taking/not taking of each of the four products within a month after the reporting date, historical data for them is in targets
17
 
18
+ The dataset is divided into 5 folds based on client_split (which consist of an equal number of unique clients) for cross-validation purposes.
19
+
20
  ```
21
  client_split Desc: Splitting clients into folds
22
  |-- client_id: str Desc: Client id
 
27
  |-- client_id: str Desc: Client id
28
  |-- event_time: timestamp Desc: Dialog's date
29
  |--embedding: array float Desc: Dialog's embeddings
30
+ |-- fold: int
31
  |-- geo Desc: Geo activity
32
  |-- client_id: str Desc: Client id
33
  |-- event_time: timestamp Desc: Event datetime
 
57
  |-- client_id: str Desc: Client id
58
  |-- event_time: Array[timestamp] Desc: Dialog's date
59
  |-- embedding: Array[float] Desc: Dialog's embedding
60
+ |-- fold: int
61
  |-- geo Desc: Geo activity
62
  |-- client_id: str Desc: Client id
63
  |-- event_time: Array[timestamp] Desc: Event datetime
 
91
  |-- trans_count: int Desc: Number of transactions
92
  |-- diff_trans_date: int Desc: Time difference between transactions
93
  |-- client_id: str Desc: Client id
94
+ |-- fold: int
95
  ```
96
 
97
  # Load dataset
 
133
  ```
134
 
135
  # Citation
 
136
  ```
137
+ TBD
 
 
 
 
 
 
 
 
 
 
138
  ```