Datasets:

ArXiv:
License:
wolgraff commited on
Commit
7c1642c
·
verified ·
1 Parent(s): 787b3f9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -0
README.md CHANGED
@@ -6,6 +6,7 @@ viewer: false
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
  Reduced dataset version is avaliable as [MBD-mini](https://huggingface.co/datasets/ai-lab/MBD-mini). 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-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:
@@ -20,6 +21,7 @@ The dataset is divided into 5 folds based on client_split (which consist of an e
20
  ```
21
  client_split Desc: Splitting clients into folds
22
  |-- client_id: str Desc: Client id
 
23
  |-- fold: int
24
 
25
  detail
@@ -27,6 +29,7 @@ detail
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
@@ -35,6 +38,7 @@ detail
35
  |-- geohash_4: int Desc: Geohash level 4
36
  |-- geohash_5: int Desc: Geohash level 5
37
  |-- geohash_6: int Desc: Geohash level 6
 
38
  |-- trx Desc: Transactional activity
39
  |-- client_id: str Desc: Client id
40
  |-- event_time: timestamp Desc: Transaction's date
@@ -51,12 +55,14 @@ detail
51
  |-- src_type22: int Desc: Clarifying feature 2 for sender
52
  |-- src_type31: int Desc: Feature 3 for sender
53
  |-- src_type32: int Desc: Clarifying feature 3 for sender
 
54
 
55
  ptls Desc: Data is similar with detail but in pytorch-lifestream format https://github.com/dllllb/pytorch-lifestream
56
  |-- dialog Desc: Dialogue embeddings
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
@@ -65,6 +71,7 @@ ptls Desc: Data is similar with detail but in pytorch-lifestream format https://
65
  |-- geohash_4: Array[int] Desc: Geohash level 4
66
  |-- geohash_5: Array[int] Desc: Geohash level 5
67
  |-- geohash_6: Array[int] Desc: Geohash level 6
 
68
  |-- trx Desc: Transactional activity
69
  |-- client_id: str Desc: Client id
70
  |-- event_time: Array[timestamp] Desc: Transaction's date
@@ -81,6 +88,7 @@ ptls Desc: Data is similar with detail but in pytorch-lifestream format https://
81
  |-- src_type22: Array[int] Desc: Clarifying feature 2 for sender
82
  |-- src_type31: Array[int] Desc: Feature 3 for sender
83
  |-- src_type32: Array[int] Desc: Clarifying feature 3 for sender
 
84
 
85
  targets
86
  |-- mon: str Desc: Reporting month
@@ -91,6 +99,7 @@ targets
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
 
 
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
  Reduced dataset version is avaliable as [MBD-mini](https://huggingface.co/datasets/ai-lab/MBD-mini). 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-mini has data based on 10% of unique clients listed in MBD.
9
+ To get a balanced version of the dataset, you can use the field is_balanced == 1
10
 
11
  # Data
12
  The dataset consists of anonymized historical data, which contains the following information for some of the Bank's clients over 12 months:
 
21
  ```
22
  client_split Desc: Splitting clients into folds
23
  |-- client_id: str Desc: Client id
24
+ |-- is_balanced: int Desc: Balanced sample status
25
  |-- fold: int
26
 
27
  detail
 
29
  |-- client_id: str Desc: Client id
30
  |-- event_time: timestamp Desc: Dialog's date
31
  |--embedding: array float Desc: Dialog's embeddings
32
+ |-- is_balanced: int Desc: Balanced sample status
33
  |-- fold: int
34
  |-- geo Desc: Geo activity
35
  |-- client_id: str Desc: Client id
 
38
  |-- geohash_4: int Desc: Geohash level 4
39
  |-- geohash_5: int Desc: Geohash level 5
40
  |-- geohash_6: int Desc: Geohash level 6
41
+ |-- is_balanced: int Desc: Balanced sample status
42
  |-- trx Desc: Transactional activity
43
  |-- client_id: str Desc: Client id
44
  |-- event_time: timestamp Desc: Transaction's date
 
55
  |-- src_type22: int Desc: Clarifying feature 2 for sender
56
  |-- src_type31: int Desc: Feature 3 for sender
57
  |-- src_type32: int Desc: Clarifying feature 3 for sender
58
+ |-- is_balanced: int Desc: Balanced sample status
59
 
60
  ptls Desc: Data is similar with detail but in pytorch-lifestream format https://github.com/dllllb/pytorch-lifestream
61
  |-- dialog Desc: Dialogue embeddings
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
+ |-- is_balanced: int Desc: Balanced sample status
66
  |-- fold: int
67
  |-- geo Desc: Geo activity
68
  |-- client_id: str Desc: Client id
 
71
  |-- geohash_4: Array[int] Desc: Geohash level 4
72
  |-- geohash_5: Array[int] Desc: Geohash level 5
73
  |-- geohash_6: Array[int] Desc: Geohash level 6
74
+ |-- is_balanced: int Desc: Balanced sample status
75
  |-- trx Desc: Transactional activity
76
  |-- client_id: str Desc: Client id
77
  |-- event_time: Array[timestamp] Desc: Transaction's date
 
88
  |-- src_type22: Array[int] Desc: Clarifying feature 2 for sender
89
  |-- src_type31: Array[int] Desc: Feature 3 for sender
90
  |-- src_type32: Array[int] Desc: Clarifying feature 3 for sender
91
+ |-- is_balanced: int Desc: Balanced sample status
92
 
93
  targets
94
  |-- mon: str Desc: Reporting month
 
99
  |-- trans_count: int Desc: Number of transactions
100
  |-- diff_trans_date: int Desc: Time difference between transactions
101
  |-- client_id: str Desc: Client id
102
+ |-- is_balanced: int Desc: Balanced sample status
103
  |-- fold: int
104
  ```
105