File size: 3,153 Bytes
9670482
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a15d763
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# Bankin10
Banking10 Dataset

## Overview
This dataset is a modified version of the original Banking77 dataset created by PolyAI. While the original dataset contains 77 fine-grained banking intents for customer service queries, this version provides a higher-level categorization by grouping these intents into 9 macro-categories.

## Original Dataset
The Banking77 dataset was created to help train and evaluate banking customer service dialogue systems. It contains 13,083 customer service queries labelled with 77 different intents. 
The original dataset focuses on fine-grained intent detection with clusters of semantically similar intents but differ in their banking-specific resolution.

## Modifications
We have regrouped the 77 original intents into 10 broader categories to facilitate higher-level categories classification:

### CARD_MANAGEMENT
- Card ordering, activation, and delivery
- Lost, stolen, or malfunctioning cards
- Card linking and support

### CARD_TRANSACTIONS
- Card payments
- Transaction recognition and disputes
- Payment status and declines
- Exchange rate issues

### CASH_OPERATIONS
- ATM withdrawals
- Cash withdrawal charges
- ATM-related issues
- Cash amount discrepancies

### TRANSFERS_AND_PAYMENTS
- Money transfers
- Direct debits
- Payment reception
- Transfer status and issues

### TOP_UP_OPERATIONS
- Account top-ups
- Balance updates
- Top-up verification
- Failed top-ups

### ACCOUNT_VERIFICATION
- Identity verification
- PIN and passcode management
- Security measures
- Phone-related security

### REFUNDS_AND_DISPUTES
- Refund requests
- Refund tracking
- Dispute resolution

### ACCOUNT_SETTINGS
- Personal details management
- Account termination

### FEES_AND_CHARGES
- Transaction fees
- Exchange charges
- Transfer and top-up fees

### LIMITS_AND_RESTRICTIONS
- Account limits
- Currency support
- Country restrictions
- Payment method support


## Dataset Structure
The dataset maintains the same structure as the original Banking77:

Training set: 10,003 examples
Test set: 3,080 examples

The only difference is in the label space, which has been reduced from 77 to 10 categories.

## Citation
If you use this dataset, please cite the original Banking77 dataset:
Copy@article{banking77,
  title={Banking77 - A Fine-Grained Banking Customer Service Dataset},
  author={Paul, S. and Ganchev, H. and Henderson, M.},
  journal={arXiv preprint arXiv:2003.04807},
  year={2020}
}

## License
This dataset follows the same license as the original Banking77 dataset.


## Acknowledgments
We thank PolyAI for creating and sharing the original Banking77 dataset. This modified version aims to provide an alternative perspective on the data by offering a more consolidated view of banking intents.

---
dataset_info:
  features:
  - name: text
    dtype: string
  - name: label
    dtype: string
  splits:
  - name: train
    num_bytes: 856872
    num_examples: 10003
  - name: test
    num_bytes: 247690
    num_examples: 3080
  download_size: 384208
  dataset_size: 1104562
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
  - split: test
    path: data/test-*
---