Datasets:
File size: 800 Bytes
f6a4411 |
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 |
---
license: mit
task_categories:
- text-classification
tags:
- text-classification
- intent-classification
- banking
- nlp
- data-centric-ai
- active-learning
---
# Banking Intent 50 Dataset
This dataset contains banking intent classification data with multiple CSV files for different use cases.
## Dataset Description
The dataset includes:
- `examples-pool.csv` - Pool of examples for labeling
- `examples-pool-ground-truth.csv` - Ground truth labels
- `test.csv` - Test set
## Usage
```python
import pandas as pd
from huggingface_hub import hf_hub_download
# Download a specific file
file_path = hf_hub_download(
repo_id="Cleanlab/banking-intent-50",
filename="examples-pool.csv",
repo_type="dataset"
)
df = pd.read_csv(file_path)
print(df.head())
```
## License
MIT License
|