Views
No views yet
distilbert-base-uncased
that reads a customer-support ticket (subject + body) and predicts which of 10
departments should handle it. Built as a deep-learning term project.| Metric | Score |
|---|---|
| Accuracy | 71.3% |
| Top-2 accuracy | 81.6% |
| Macro-F1 | 0.68 |
1from transformers import pipeline
2
3clf = pipeline("text-classification", model="pxlnstn/distilbert-ticket-routing",
4 top_k=None)
5print(clf("My internet has been down all morning and the VPN keeps disconnecting."))
6# -> Technical Support (with IT Support close behind)Billing and Payments, Customer Service, General Inquiry, Human Resources,
IT Support, Product Support, Returns and Exchanges, Sales and Pre-Sales,
Service Outages and Maintenance, Technical Support.distilbert-base-uncased (6 layers, ~66M parameters).Tobi-Bueck/customer-support-tickets
(~28k rows), stratified 80/10/10 train/validation/test split.subject + body, truncated to 256 tokens.cc-by-nc-4.0, following the non-commercial licence of the training dataset.