pavelshpagin commited on
Commit
194a0ad
·
verified ·
1 Parent(s): 96e660f

SupportBench v1.0: 6 datasets, 60K messages, 3 languages, 6 domains

Browse files
Files changed (8) hide show
  1. README.md +120 -0
  2. domotica_es.json +0 -0
  3. grapheneos.json +0 -0
  4. manifest.json +167 -0
  5. mikrotik_ua.json +0 -0
  6. naseros.json +0 -0
  7. tasmota.json +0 -0
  8. ua_ardupilot.json +0 -0
README.md ADDED
@@ -0,0 +1,120 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - text-classification
5
+ - question-answering
6
+ language:
7
+ - en
8
+ - es
9
+ - uk
10
+ tags:
11
+ - technical-support
12
+ - case-extraction
13
+ - multilingual
14
+ - chat
15
+ - telegram
16
+ - benchmark
17
+ pretty_name: SupportBench
18
+ size_categories:
19
+ - 10K<n<100K
20
+ ---
21
+
22
+ # SupportBench
23
+
24
+ A multilingual benchmark for evaluating **case extraction** from real-world tech support group chats.
25
+
26
+ SupportBench contains **60,000 messages** across **6 datasets** in **3 languages** (English, Spanish, Ukrainian), spanning **6 technical domains**. All messages are sourced from public Telegram support groups.
27
+
28
+ ## Datasets
29
+
30
+ | Dataset | Language | Domain | Messages | Users | Reply% | Media |
31
+ |---------|----------|--------|----------|-------|--------|-------|
32
+ | Ardupilot-UA | Ukrainian | UAV / Drones | 10,000 | 319 | 51.8% | 1,440 |
33
+ | MikroTik-UA | Ukrainian | Networking | 10,000 | 205 | 55.4% | 884 |
34
+ | Domotica-ES | Spanish | Smart Home / HA | 10,000 | 530 | 58.3% | 736 |
35
+ | NASeros-ES | Spanish | NAS / Networking | 10,000 | 761 | 46.5% | 495 |
36
+ | Tasmota-EN | English | IoT Firmware | 10,000 | 1,237 | 31.5% | 903 |
37
+ | GrapheneOS-EN | English | Mobile OS / Privacy | 10,000 | 1,346 | 10.4% | 4 |
38
+
39
+ ## Structure
40
+
41
+ ```
42
+ SupportBench/
43
+ ├── ua_ardupilot.json # Ukrainian drone/UAV support
44
+ ├── mikrotik_ua.json # Ukrainian networking support
45
+ ├── domotica_es.json # Spanish smart home support
46
+ ├── naseros.json # Spanish NAS/networking support
47
+ ├── tasmota.json # English IoT firmware support
48
+ ├── grapheneos.json # English mobile OS/privacy support
49
+ ├── manifest.json # Benchmark metadata and stats
50
+ └── README.md
51
+ ```
52
+
53
+ ## Message Format
54
+
55
+ Each JSON file contains `{"meta": {...}, "messages": [...]}`. Each message:
56
+
57
+ ```json
58
+ {
59
+ "id": "tg_tasmota_12345",
60
+ "group_id": "tasmota",
61
+ "ts": 1700000000000,
62
+ "sender": "user_a1b2c3d4e5",
63
+ "body": "My Sonoff Basic won't flash via serial...",
64
+ "reply_to_id": "tg_tasmota_12340",
65
+ "grouped_id": null,
66
+ "media_type": "photo",
67
+ "media_path": null,
68
+ "webpage_url": null,
69
+ "reactions": null,
70
+ "views": 42,
71
+ "forwards": 0
72
+ }
73
+ ```
74
+
75
+ ### Fields
76
+
77
+ | Field | Type | Description |
78
+ |-------|------|-------------|
79
+ | `id` | string | Unique message ID (`tg_{group}_{telegram_id}`) |
80
+ | `group_id` | string | Dataset/group name |
81
+ | `ts` | int | Unix timestamp in milliseconds |
82
+ | `sender` | string | Anonymized sender (`user_{sha256[:10]}`) |
83
+ | `body` | string | Message text with Unicode emoji preserved |
84
+ | `reply_to_id` | string\|null | ID of parent message |
85
+ | `grouped_id` | int\|null | Album group ID for multi-media posts |
86
+ | `media_type` | string\|null | `photo`, `video`, `image`, `document`, `pdf`, `archive`, `audio`, `webpage`, `poll` |
87
+ | `media_path` | string\|null | Relative path to media file (only in `ua_ardupilot`) |
88
+ | `webpage_url` | string\|null | URL from link preview |
89
+ | `reactions` | object\|null | Emoji reaction counts (only in `ua_ardupilot`) |
90
+ | `views` | int\|null | View count |
91
+ | `forwards` | int\|null | Forward count |
92
+
93
+ ## Notes
94
+
95
+ - All sender IDs are irreversibly anonymized via SHA-256 hashing
96
+ - `ua_ardupilot` has richer metadata (reactions, media paths) from a separate export pipeline
97
+ - GrapheneOS has lower resolved reply rate (10.4%) because ~64% of messages are bridged from Discord/Matrix, with many reply references pointing outside the 10K export window
98
+ - Tasmota spans 3.5 years of IoT firmware support history (1,274 days)
99
+
100
+ ## Intended Use
101
+
102
+ - **Case extraction**: identify problem-solution pairs from unstructured chat streams
103
+ - **Thread reconstruction**: reconstruct conversation threads from reply chains
104
+ - **Cross-lingual transfer**: evaluate whether case-mining generalizes across languages
105
+ - **Q&A retrieval**: mine question-answer pairs from technical discussions
106
+
107
+ ## Citation
108
+
109
+ ```bibtex
110
+ @inproceedings{supportbench2026,
111
+ title={SupportBot: Continuous Case Mining for Grounded Technical Support},
112
+ author={Shpagin, Pavel},
113
+ booktitle={Proceedings of EMNLP 2026},
114
+ year={2026}
115
+ }
116
+ ```
117
+
118
+ ## License
119
+
120
+ CC BY 4.0. All messages are from public Telegram groups. Sender identities are irreversibly anonymized.
domotica_es.json ADDED
The diff for this file is too large to render. See raw diff
 
grapheneos.json ADDED
The diff for this file is too large to render. See raw diff
 
manifest.json ADDED
@@ -0,0 +1,167 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "benchmark": "SupportBench",
3
+ "version": "1.0",
4
+ "total_messages": 60000,
5
+ "total_media": 4462,
6
+ "languages": [
7
+ "en",
8
+ "es",
9
+ "uk"
10
+ ],
11
+ "domains": [
12
+ "iot_firmware",
13
+ "mobile_os_privacy",
14
+ "nas_networking",
15
+ "networking_infrastructure",
16
+ "smarthome_automation",
17
+ "uav_drone_systems"
18
+ ],
19
+ "datasets": [
20
+ {
21
+ "name": "ua_ardupilot",
22
+ "pretty_name": "Ardupilot-UA",
23
+ "version": "1.0",
24
+ "benchmark": "SupportBench",
25
+ "source": "t.me/ardupilot_ua",
26
+ "lang": "uk",
27
+ "domain": "uav_drone_systems",
28
+ "description": "Ukrainian Ardupilot UAV / drone flight controller support",
29
+ "stats": {
30
+ "total_messages": 10000,
31
+ "with_text": 9447,
32
+ "with_replies": 5181,
33
+ "reply_rate": 0.518,
34
+ "with_media": 1440,
35
+ "with_media_files": 1134,
36
+ "unique_senders": 319,
37
+ "qa_exchanges": 1115,
38
+ "total_reactions": 1885,
39
+ "top_reactions": {
40
+ "👍": 702,
41
+ "❤": 386,
42
+ "😁": 216,
43
+ "🔥": 156,
44
+ "💯": 72,
45
+ "🤝": 71,
46
+ "🤣": 56,
47
+ "👌": 29,
48
+ "🤔": 28,
49
+ "✍": 26
50
+ },
51
+ "media_types": {
52
+ "webpage": 265,
53
+ "video": 91,
54
+ "photo": 946,
55
+ "document": 87,
56
+ "pdf": 18,
57
+ "image": 20,
58
+ "audio": 6,
59
+ "archive": 6,
60
+ "poll": 1
61
+ },
62
+ "first_ts": 1760678040000,
63
+ "last_ts": 1773319475000
64
+ }
65
+ },
66
+ {
67
+ "name": "mikrotik_ua",
68
+ "version": "1.0",
69
+ "benchmark": "SupportBench",
70
+ "pretty_name": "MikroTik-UA",
71
+ "source": "t.me/mtikua",
72
+ "lang": "uk",
73
+ "domain": "networking_infrastructure",
74
+ "description": "Ukrainian MikroTik networking equipment troubleshooting",
75
+ "stats": {
76
+ "total_messages": 10000,
77
+ "with_text": 9551,
78
+ "with_replies": 5542,
79
+ "reply_rate": 0.554,
80
+ "with_media": 884,
81
+ "unique_senders": 205,
82
+ "first_ts": 1761418433000,
83
+ "last_ts": 1773389398000
84
+ }
85
+ },
86
+ {
87
+ "name": "domotica_es",
88
+ "version": "1.0",
89
+ "benchmark": "SupportBench",
90
+ "pretty_name": "Domotica-ES",
91
+ "source": "t.me/GizChinaHomeAssistant",
92
+ "lang": "es",
93
+ "domain": "smarthome_automation",
94
+ "description": "Spanish Home Assistant / smart home automation support",
95
+ "stats": {
96
+ "total_messages": 10000,
97
+ "with_text": 9647,
98
+ "with_replies": 5834,
99
+ "reply_rate": 0.583,
100
+ "with_media": 736,
101
+ "unique_senders": 530,
102
+ "first_ts": 1748789731000,
103
+ "last_ts": 1773242085000
104
+ }
105
+ },
106
+ {
107
+ "name": "naseros",
108
+ "version": "1.0",
109
+ "benchmark": "SupportBench",
110
+ "pretty_name": "NASeros-ES",
111
+ "source": "t.me/NASeros",
112
+ "lang": "es",
113
+ "domain": "nas_networking",
114
+ "description": "Spanish NAS, networking, storage, and infrastructure support",
115
+ "stats": {
116
+ "total_messages": 10000,
117
+ "with_text": 9680,
118
+ "with_replies": 4651,
119
+ "reply_rate": 0.465,
120
+ "with_media": 495,
121
+ "unique_senders": 761,
122
+ "first_ts": 1752497793000,
123
+ "last_ts": 1773228955000
124
+ }
125
+ },
126
+ {
127
+ "name": "tasmota",
128
+ "version": "1.0",
129
+ "benchmark": "SupportBench",
130
+ "pretty_name": "Tasmota-EN",
131
+ "source": "t.me/tasmota",
132
+ "lang": "en",
133
+ "domain": "iot_firmware",
134
+ "description": "English Tasmota IoT device firmware flashing and configuration",
135
+ "stats": {
136
+ "total_messages": 10000,
137
+ "with_text": 8785,
138
+ "with_replies": 3152,
139
+ "reply_rate": 0.315,
140
+ "with_media": 903,
141
+ "unique_senders": 1237,
142
+ "first_ts": 1668250665000,
143
+ "last_ts": 1773212132000
144
+ }
145
+ },
146
+ {
147
+ "name": "grapheneos",
148
+ "version": "1.0",
149
+ "benchmark": "SupportBench",
150
+ "pretty_name": "GrapheneOS-EN",
151
+ "source": "t.me/GrapheneOS",
152
+ "lang": "en",
153
+ "domain": "mobile_os_privacy",
154
+ "description": "English GrapheneOS mobile OS installation, privacy, and troubleshooting",
155
+ "stats": {
156
+ "total_messages": 10000,
157
+ "with_text": 9008,
158
+ "with_replies": 1042,
159
+ "reply_rate": 0.104,
160
+ "with_media": 4,
161
+ "unique_senders": 1346,
162
+ "first_ts": 1767480456000,
163
+ "last_ts": 1773384182000
164
+ }
165
+ }
166
+ ]
167
+ }
mikrotik_ua.json ADDED
The diff for this file is too large to render. See raw diff
 
naseros.json ADDED
The diff for this file is too large to render. See raw diff
 
tasmota.json ADDED
The diff for this file is too large to render. See raw diff
 
ua_ardupilot.json ADDED
The diff for this file is too large to render. See raw diff