ulyatkch commited on
Commit
f6a4411
·
verified ·
1 Parent(s): b0c0f1e

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +43 -0
README.md ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - text-classification
5
+ tags:
6
+ - text-classification
7
+ - intent-classification
8
+ - banking
9
+ - nlp
10
+ - data-centric-ai
11
+ - active-learning
12
+ ---
13
+
14
+ # Banking Intent 50 Dataset
15
+
16
+ This dataset contains banking intent classification data with multiple CSV files for different use cases.
17
+
18
+ ## Dataset Description
19
+
20
+ The dataset includes:
21
+ - `examples-pool.csv` - Pool of examples for labeling
22
+ - `examples-pool-ground-truth.csv` - Ground truth labels
23
+ - `test.csv` - Test set
24
+
25
+ ## Usage
26
+
27
+ ```python
28
+ import pandas as pd
29
+ from huggingface_hub import hf_hub_download
30
+
31
+ # Download a specific file
32
+ file_path = hf_hub_download(
33
+ repo_id="Cleanlab/banking-intent-50",
34
+ filename="examples-pool.csv",
35
+ repo_type="dataset"
36
+ )
37
+ df = pd.read_csv(file_path)
38
+ print(df.head())
39
+ ```
40
+
41
+ ## License
42
+
43
+ MIT License