Kicaulah commited on
Commit
ecd1dec
·
verified ·
1 Parent(s): 8d52f9a

Delete https:

Browse files
Files changed (1) hide show
  1. https:/payhip.com/b/cMI1r.md +0 -140
https:/payhip.com/b/cMI1r.md DELETED
@@ -1,140 +0,0 @@
1
- ---
2
- language:
3
- - en
4
- tags:
5
- - code
6
- size_categories:
7
- - 100K<n<1M
8
- ---
9
-
10
- # EcommerceAI Dataset — English E-commerce Customer Service
11
-
12
- ## Dataset Description
13
-
14
- A high-quality **synthetic** English-language dataset of e-commerce
15
- customer service conversations with full intent and sentiment annotations.
16
-
17
- > ⚠️ **Transparency Notice:** This is a synthetic dataset. All conversations
18
- > are programmatically generated. No real customer data is included.
19
- > Every record is labeled `"data_type": "SYNTHETIC"` in metadata.
20
-
21
- ---
22
-
23
- ## Dataset Stats
24
-
25
- | Metric | Value |
26
- |--------|-------|
27
- | Conversations | 5,000 |
28
- | Dialogue Turns | 47,028 |
29
- | Avg Turns/Conversation | 9.4 |
30
- | Language | English |
31
- | Issue Categories | 5 |
32
- | Product Categories | 10 |
33
- | Intent Classes | 12 |
34
-
35
- ---
36
-
37
- ## Issue Categories
38
-
39
- | Category | Count |
40
- |----------|-------|
41
- | Late Delivery | 1,000 |
42
- | Wrong Item Received | 1,000 |
43
- | Refund Request | 1,000 |
44
- | Damaged Item | 1,000 |
45
- | Product Inquiry | 1,000 |
46
-
47
- ---
48
-
49
- ## Data Schema
50
-
51
- ```json
52
- {
53
- "id": "uuid-v4",
54
- "metadata": {
55
- "domain": "ecommerce_customer_service",
56
- "issue_type": "late_delivery",
57
- "product_category": "electronics",
58
- "language": "en",
59
- "data_type": "SYNTHETIC",
60
- "quality_tier": "enterprise",
61
- "turns_count": 10
62
- },
63
- "conversation": [
64
- {
65
- "role": "user",
66
- "content": "My order hasn't arrived in 7 days.",
67
- "intent": "late_delivery",
68
- "sentiment": "negative"
69
- },
70
- {
71
- "role": "agent",
72
- "content": "I'm sorry to hear that. Let me check your order.",
73
- "intent": "acknowledge",
74
- "sentiment": "positive"
75
- }
76
- ]
77
- }
78
- ```
79
-
80
- ---
81
-
82
- ## Quick Load
83
-
84
- ```python
85
- # Option 1 — HuggingFace Datasets
86
- from datasets import load_dataset
87
- ds = load_dataset("YOUR_USERNAME/ecommerce-cs-dataset")
88
-
89
- # Option 2 — Pure Python
90
- import json
91
- conversations = []
92
- with open('ecommerce_cs_en_synthetic.jsonl') as f:
93
- for line in f:
94
- conversations.append(json.loads(line))
95
-
96
- # Filter by issue type
97
- refunds = [c for c in conversations
98
- if c['metadata']['issue_type'] == 'refund_request']
99
- ```
100
-
101
- ---
102
-
103
- ## Use Cases
104
-
105
- - ✅ Fine-tuning LLMs for customer service chatbots
106
- - ✅ Training intent classifiers (12 classes)
107
- - ✅ Training sentiment analysis models
108
- - ✅ Dialogue state tracking research
109
- - ✅ Augmenting real-world datasets
110
- - ✅ Testing chatbot pipelines
111
-
112
- ---
113
-
114
- ## 🔒 Full Dataset (Commercial License)
115
-
116
- This repository contains a **free sample of 500 conversations.**
117
-
118
- The full dataset **(5,000 conversations, 47K+ turns)** with commercial
119
- license is available here:
120
-
121
- 👉 **[Get Full Dataset on Sellix → YOUR_SELLIX_LINK]**
122
-
123
- Includes:
124
- - Full 5,000 conversation JSONL
125
- - Complete JSON array format
126
- - Data card & documentation
127
- - Commercial use license
128
-
129
- ---
130
-
131
- ## License
132
-
133
- Sample (this repo): CC BY-NC 4.0 — free for research & personal use.
134
- Full dataset: Commercial license — see Sellix listing for terms.
135
-
136
- ---
137
-
138
- ## Citation
139
-
140
- If you use this dataset in research, please cite: