mstz commited on
Commit
8e8780b
1 Parent(s): 14ea993

Upload 2 files

Browse files
Files changed (1) hide show
  1. README.md +24 -1
README.md CHANGED
@@ -15,4 +15,27 @@ configs:
15
  - subscription
16
  ---
17
  # Bank
18
- The [Bank dataset](https://archive.ics.uci.edu/ml/datasets/bank+marketing) is cool.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  - subscription
16
  ---
17
  # Bank
18
+ The [Bank dataset](https://archive.ics.uci.edu/ml/datasets/bank+marketing) from the [UCI ML repository](https://archive.ics.uci.edu/ml/datasets).
19
+ Potential clients are contacted by a bank during a second advertisement campaign.
20
+ This datasets records the customer, the interaction with the AD campaign, and if they subscribed to a proposed bank plan or not.
21
+
22
+ # Configurations and tasks
23
+ - `encoding` The encoding dictionaries mapping binary and ordinal features to their value;.
24
+ - `subscription` Binary classification task to classify whether the customer has subscribed or not.
25
+
26
+ # Features
27
+ | **Name** |**Type** |
28
+ |-----------------------------------------------|-----------|
29
+ |`age` |`int64` |
30
+ |`job` |`string` |
31
+ |`marital_status` |`string` |
32
+ |`education` |`int8` |
33
+ |`has_defaulted` |`int8` |
34
+ |`account_balance` |`int64` |
35
+ |`has_housing_loan` |`int8` |
36
+ |`has_personal_loan` |`int8` |
37
+ |`month_of_last_contact` |`string` |
38
+ |`number_of_calls_in_ad_campaign` |`string` |
39
+ |`days_since_last_contact_of_previous_campaign` |`int16` |
40
+ |`number_of_calls_before_this_campaign` |`int16` |
41
+ |`successfull_subscription` |`int8` |