Update README.md
Browse filesπ Dataset Card: Customer Complaints Classification
π§Ύ Dataset Description
This dataset contains 3,800 real-world customer complaint entries submitted to a business platform. Each complaint includes a short text description and is labeled with two targets:
Category β what type of issue the complaint relates to (e.g., Payments, Promotions, Account & Shipping, Order Tracking).
Urgency β how urgent the user perceives the issue (Low, Medium, or Immediate).
The dataset is designed for multi-output text classification tasks and is especially useful for training models that can understand intent and urgency in customer service interactions.
π Structure
Each entry contains the following fields:
Complaint: A natural language description of the customer issue.
Category: The type of problem (business area).
Urgency: The urgency level for customer support triaging.
Example:
csv
Copy
Edit
Complaint,Category,Urgency
"I canβt add a new address β button does nothing.",Account & Shipping,Low
"System declined my payment without any reason β this is very frustrating.",Payments,Immediate
π Use Cases
Training customer service models to triage tickets automatically.
Developing multi-task transformers (e.g., T5, BART) that output structured intent + urgency.
Benchmarking multi-label text classification models in a practical domain.
Fine-tuning LLMs for support automation or chatbot prioritization.
π§ Tasks
Text Classification (Multi-output / Multi-label)
Intent Recognition
Urgency Detection
Natural Language Understanding
π Recommended Models
T5 / BART for sequence-to-sequence learning
DistilBERT / RoBERTa for classification pipelines
Any encoder-decoder or encoder-only transformer model

|
@@ -20,6 +20,23 @@ configs:
|
|
| 20 |
data_files:
|
| 21 |
- split: train
|
| 22 |
path: data/train-*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 23 |
---
|
| 24 |
# Dataset Card for "ecommerce-customer-support"
|
| 25 |
|
|
|
|
| 20 |
data_files:
|
| 21 |
- split: train
|
| 22 |
path: data/train-*
|
| 23 |
+
license: mit
|
| 24 |
+
task_categories:
|
| 25 |
+
- text-classification
|
| 26 |
+
- text2text-generation
|
| 27 |
+
language:
|
| 28 |
+
- en
|
| 29 |
+
tags:
|
| 30 |
+
- customer-support
|
| 31 |
+
- t5
|
| 32 |
+
- business
|
| 33 |
+
- classification
|
| 34 |
+
- urgency-detection
|
| 35 |
+
- multi-label
|
| 36 |
+
- complaints
|
| 37 |
+
pretty_name: 'Customer Complaints Classification '
|
| 38 |
+
size_categories:
|
| 39 |
+
- 1K<n<10K
|
| 40 |
---
|
| 41 |
# Dataset Card for "ecommerce-customer-support"
|
| 42 |
|